summaryrefslogtreecommitdiffstats
path: root/index.md
blob: f457e262a655e64547e73efb561868c0352f58c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
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>Built with <a href="https://github.com/ronv/minimalist" class="external"
     target="_blank" rel="noopener noreferrer">Minimalist</a>. 
     <a href="/cgi-bin/search.cgi">Search</a>
  </p>
</footer>