1
ewpratten.com/src/blog.html
Evan Pratten 7eb5bd08c1
All checks were successful
Deploy ewpratten.com / Deploy to Production (push) Successful in 1m11s
Better handling of the blog list on small screens
2024-12-27 13:00:00 -05:00

20 lines
560 B
HTML

---
layout: default
title: Blog
---
<p>The following is a list of articles I've written. This is also available in <a href="/rss.xml">RSS</a> format.</p>
{% assign grouped_posts = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
{% for group in grouped_posts %}
<h2>{{ group.name }}</h2>
<ul id="blog-post-list">
{% for post in group.items %}
<li>
<span style="color: gray;">{{ post.date | date: "%Y-%m-%d" }}</span>
<a href="{{ post.url | downcase }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
{% endfor %}