14 lines
263 B
HTML
14 lines
263 B
HTML
|
---
|
|||
|
layout: default
|
|||
|
title: "Hexaitos.com – Blog"
|
|||
|
---
|
|||
|
<h1>Blog Posts</h1>
|
|||
|
|
|||
|
<ul>
|
|||
|
{% for post in site.posts %}
|
|||
|
<li>
|
|||
|
<a href="{{ post.url }}">{{ post.title }} ({{ post.date | date_to_string }})</a>
|
|||
|
{{ post.excerpt }}
|
|||
|
</li>
|
|||
|
{% endfor %}
|
|||
|
</ul>
|