[30/04/23] sorted category styling and added mastodon link

This commit is contained in:
Andrew Conlin 2023-04-30 13:41:06 +01:00
parent f8e1f5c38d
commit 547dfe4eb3
56 changed files with 594 additions and 4035 deletions

View file

@ -1,7 +1,9 @@
---
layout: default
title: latest posts
title: latest tils
permalink: /til/
categories:
- til
---
@ -10,6 +12,7 @@ permalink: /til/
{% for post in site.posts %}
{% assign categories = post.categories %}
{% assign category = site.data.categories[categories.first] %}
{% if categories.first == 'til' %}
<li>
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
<div style="font-family:Rubik;font-weight:500;">
@ -20,5 +23,6 @@ permalink: /til/
<br>
<br>
</li>
{% endif %}
{% endfor %}
</ul>