15 lines
454 B
HTML
Executable File
15 lines
454 B
HTML
Executable File
---
|
||
layout: default
|
||
title: "hexaitos.com – Blog"
|
||
description: "Hexaitos’ blog has posts on computers, languages and photography. Mostly computers and Linux though. Here you will find posts about random projects I have undertaken."
|
||
---
|
||
<h1>Blog Posts</h1>
|
||
|
||
<ul>
|
||
{% for post in site.posts %}
|
||
<li>
|
||
<a href="{{ post.url }}">{{ post.title }} ({{ post.date | date_to_string }})</a>
|
||
<p>{{ post.excerpt }}</p>
|
||
</li>
|
||
{% endfor %}
|
||
</ul> |