summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 1d73f3e3c9a9f61810acd4580292d6fdce6fb188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: default
title: ASCIIMX
---

<div class="articles">
  <table class="posts-table">

  {% assign posts = site.archive | sort: 'date' | reverse %}
  {% for post in posts %}

    <tr>
      <td class="posts-td-link">
        <a href="{{ post.url }}">{{ post.title }}</a>
      </td>
      <td class="posts-td-time">
        <span class="post-meta">
          <time datetime="{{ post.date }}">{{ post.date | date: "%Y-%m-%d" }}</time>
        </span>
      </td>
    </tr>

  {% endfor %}

  </table>
</div>