mirror of
https://github.com/correl/correl.github.io.git
synced 2024-12-28 03:00:04 +00:00
22 lines
458 B
HTML
22 lines
458 B
HTML
---
|
|
layout: default
|
|
title: correl.phoenixinquis.net
|
|
---
|
|
|
|
{% for post in paginator.posts %}
|
|
<article>
|
|
<header>
|
|
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
|
|
<hr />
|
|
<span class="date">{{ post.date | date_to_long_string }}</span>
|
|
</header>
|
|
<div style="clear: both;"></div>
|
|
<div class="excerpt">
|
|
{{ post.content }}
|
|
</div>
|
|
<footer>
|
|
<hr />
|
|
<a href="{{ post.url }}">View comments</a>
|
|
</footer>
|
|
</article>
|
|
{% endfor %}
|