-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·47 lines (44 loc) · 1.36 KB
/
index.html
File metadata and controls
executable file
·47 lines (44 loc) · 1.36 KB
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
44
45
46
47
---
layout: page
---
<section class="c-archives">
<link rel="shortcut icon" href="">
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% if forloop.first %}
<h2 class="c-archives__year" id="{{ this_year }}-ref">{{ this_year }}</h2>
<ul class="c-archives__list">
{% endif %}
<li class="c-archives__item">
<h3>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h3>
<p>
<small>{{ post.date | date: "%B %-d, %Y" }}</small>
<small>{% include read_time.html post=post %}</small>
<small>
<a href="{{ post.url | prepend: site.baseurl }}#discussion"
data-disqus-identifier="{{ post.id }}">
0 comments
</a>
</small>
</p>
<p class="c-archives__description">{{ post.description }}</p>
</li>
{% if forloop.last %}
</ul>
{% else %}
{% if this_year != next_year %}
</ul>
<h2 class="c-archives__year" id="{{ next_year }}-ref">
{{ next_year }}
</h2>
<ul class="c-archives__list">
{% endif %}
{% endif %}
{% endfor %}
</section>
<script
id="dsq-count-scr"
src="https://{{ site.disqus_id }}.disqus.com/count.js" async></script>