mirror of
https://github.com/TomHodson/tomhodson.github.com.git
synced 2025-06-26 10:01:18 +02:00
13 lines
285 B
HTML
13 lines
285 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 class="blogroll"><img src = "{{post.image}}"></figure>
|
|
</article>
|
|
{% endfor %}
|