Styling updates and add social links

This commit is contained in:
cheddar 2025-04-18 11:28:28 -04:00
parent eafe6648cc
commit a2cb0960ab
No known key found for this signature in database
15 changed files with 135 additions and 23 deletions

View file

@ -1,4 +1,8 @@
<a {%if page.url == post.url %}class="current-page"{% endif %}
href="{{ post.url }}">{{ post.data.title }}</a>
<time datetime="{{ post.date | htmlDateString }}">{{ post.date | htmlDateString }}</time>
{% if post.data.description %}<p>{{ post.data.description }}</p>{% endif %}
<li class="post-link">
<a {%if page.url == post.url %}class="current-page"{% endif %}
href="{{ post.url }}">{{ post.data.title }}</a>
{% if post.data.description %}<p>{{ post.data.description }}</p>
{% elseif post.data.series %}<p>- {{ post.data.series.name }}</p>
{% endif %}
<p><time datetime="{{ post.date | htmlDateString }}">{{ post.date | readableDate }}</time></p>
</li>