mirror of
https://github.com/TomHodson/tomhodson.github.com.git
synced 2025-06-26 10:01:18 +02:00
12 lines
250 B
HTML
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 %}
|