mirror of
https://github.com/correl/correl.github.io.git
synced 2025-01-01 11:03:18 +00:00
19 lines
302 B
HTML
19 lines
302 B
HTML
|
---
|
||
|
layout: default
|
||
|
title: correl.phoenixinquis.net
|
||
|
---
|
||
|
|
||
|
<h1>Posts</h1>
|
||
|
|
||
|
{% for post in site.posts %}
|
||
|
<article>
|
||
|
<h1><a href="{{post.url }}">{{ post.title }}</a></h1>
|
||
|
|
||
|
{{ post.excerpt }}
|
||
|
|
||
|
<footer>
|
||
|
<a href="{{ post.url }}">Read more …</a>
|
||
|
</footer>
|
||
|
</article>
|
||
|
{% endfor %}
|