blob: 4ae019e303fc3049886121f5a1d955115fb8dd1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
layout: default
title: "Home"
---
<ul id="post-list">
{% assign posts = site.log | sort: 'date' | reverse %}
{% for post in posts limit: include.limit %}
<li>
<time>{{ post.date | date: "%Y-%m-%d" }}</time>
<a href="{{ post.url }}" class="link-decor-none">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<footer>
<p>A journal of personal projects and experiments. <a href="/cgi-bin/find.cgi">Search</a></p>
<p>Built with <a href="https://github.com/ronv/minimalist" class="external" target="_blank" rel="noopener noreferrer">Minimalist</a></p>
</footer>
|