maggioni.xyz/blog.html

24 lines
490 B
HTML

---
layout: page
title: Blog
permalink: /blog/
---
<div class="home">
<p style="margin-top: -2rem; margin-bottom: 2rem">
<a href="/feed.xml">RSS feed</a>
</p>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta"> {{ post.date | date: "%b %-d, %Y" }}</span>
<h4>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}</a
>
</h4>
</li>
{% endfor %}
</ul>
</div>