hexaitos.com/blog.html

15 lines
454 B
HTML
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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>