blob: 3dcf45f8877525426e362417497b8caba203d3e1 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
---
layout: default
title: ASCIIMX
---
<div class="container">
<img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line">
<p class="center author">{{ site.author }}</p>
<img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line flip">
<h1 class="brand title center" id="type">{{ site.title | upcase }}</h1>
<h5 class="brand-description center">{{ site.description | markdownify }}</h5>
<img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line tag flip">
<p class="right tagline">{{ site.tagline }}</p>
<img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line tag">
<br>
<br>
<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>
</div>
|