blob: bcfa3c2b7c6173fe67c49e1f89825d549ee3a777 [file] [log] [blame]
---
layout: page
title : Posts
header : Posts
group : blog
order : 100
---
{% include JB/setup %}
<h1>Posts</h1>
<ul class="bloglist">
{% for post in site.posts %}
{% assign post_year = post.date | date: "%Y" %}
{% if post_year >= "2025" %}
<li>
<span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</span>
</br>
<span>
{{ post.date | date: "%b %-d, %Y" }}
</span>
</li>
{% endif %}
{% endfor %}
</ul>