personal_site/blog.html
2022-07-06 18:16:30 +01:00

13 lines
268 B
HTML

---
layout: default
title: Blog
permalink: /blog/
---
{% for post in site.posts %}
<article>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<summary>{{ post.excerpt }}</summary>
<figure><img src = "{{post.image}}"></figure>
</article>
{% endfor %}