feat: simplified links page

This commit is contained in:
Cory Dransfeldt 2024-02-18 20:54:59 -08:00
parent faf0b4c6ee
commit 5ac7243c15
No known key found for this signature in database
3 changed files with 18 additions and 29 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "5.9.6", "version": "6.0.0",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -0,0 +1,4 @@
.link__list {
padding-left: 0;
margin-bottom: 2rem;
}

View file

@ -3,34 +3,19 @@ title: Links
layout: default layout: default
pagination: pagination:
data: links data: links
size: 8 size: 30
image: /assets/img/ogi/links.jpg image: /assets/img/ogi/links.jpg
--- ---
{% for link in pagination.items %} {% capture css %}
{%- assign shareLink = link.url | findPost: linkPosts -%} {% render "./assets/styles/pages/links.css" %}
<article class="h-entry" data-pagefind-body> {% endcapture %}
<a class="no-underline" href="{{ link.url }}"> <style>{{ css }}</style>
<h2 class="flex--centered" data-pagefind-meta="title">{{ link.title }}</h2> <ul class="link__list">
</a> {% for link in pagination.items %}
{%- if link.author and link.author != 'undefined' %} <li>
<div rel="author"> <a class="no-underline" href="{{ link.url }}">{{ link.title }}</a>
{{ link.author }} {% if link.author and link.author != 'undefined' %}by {{ link.author }}{% endif %}
</div> </li>
{% endif -%} {% endfor %}
<div class="flex--centered"> </ul>
<time class="dt-published" datetime="{{ link.date }}">
{{ link.date | date: "%m.%Y" }}
</time>
{%- if shareLink %}
<a class="brand-mastodon icon--small icon--center__vertical" href="{{ shareLink }}">
{% tablericon "brand-mastodon" "Mastodon post" %}
</a>
{% endif -%}
</div>
<blockquote class="p-summary">{{ link.summary }}</blockquote>
{%- if link.note %}
<p>{{ link.note | markdown }}</p>
{% endif -%}
</article>
{% endfor %}
{% render "partials/paginator.liquid", pagination:pagination %} {% render "partials/paginator.liquid", pagination:pagination %}