personal_site/index.html
2022-06-23 15:29:07 +02:00

12 lines
250 B
HTML

---
layout: default
title: Home
---
{% 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 %}