-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 970 Bytes
/
index.html
File metadata and controls
33 lines (32 loc) · 970 Bytes
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
---
layout: default
title: Afanty
---
<ul class="timeline">
{% assign date="" %}
{% for post in site.posts %}
{% if forloop.first %}
{% assign date = post.date %}
<li>
<div class="time">{{post.date|date_to_string}}</div>
<!-- <div class="version">{{date|date_to_string}}</div> -->
<div class="number"></div>
<div class="content">
<pre><a href="{{ post.url }}">{{ post.title }}</a></pre>
{% else %}
{% if post.date == date %}
<pre><a href="{{ post.url }}">{{ post.title }}</a></pre>
{% else %}
{% assign date = post.date %}
</div>
</li>
<li>
<div class="time">{{post.date|date_to_string}}</div>
<!-- <div class="version">{{date|date_to_string}}</div> -->
<div class="number"></div>
<div class="content">
<pre><a href="{{ post.url }}">{{ post.title }}</a></pre>
{% endif %}
{% endif %}
{% endfor %}
</ul>