-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.14 KB
/
index.html
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: base
title: hi
---
<div class="grid-x layout-archive">
<style type="text/css">
.grid-x > .layout-archive{
opacity: 0;
}
</style>
<div class="medium-12">
<ul>
{% for post in site.posts %}
<li>
<div class="grid-x">
<div class="medium-9">
<span><a href="{{ post.url }} ">{{ post.title }}</a></span>
</div>
<div class="medium-3 archive-data" style="text-align: right">
<span>{{ post.date | date: '%d %b %Y' }}</span>
</div>
</div>
</li>
{% endfor %}
</ul>
</div>
</div>