-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2-archives.html
More file actions
33 lines (29 loc) · 918 Bytes
/
2-archives.html
File metadata and controls
33 lines (29 loc) · 918 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
33
---
layout: page
title: Archives
description: "A year wise archive collection."
excerpt: "A year wise archive collection for cVoice"
header_image: "/assets/img/archives-bg.jpg"
redirect_from: /archive/
---
<ul class="archives">
{% for post in site.posts %}
{% unless post.next %}
<h3 class="section-heading">{{ post.date | date:"%Y"}}</h3>
{% else %}
{% capture year %}{{ post.date | date:"%Y"}}{% endcapture %}
{% capture nyear %}{{ post.next.date | date:"%Y"}}{% endcapture %}
{% if year != nyear %}
<h3 class="section-heading">{{ post.date | date:"%Y"}}</h3>
{% endif %}
{% endunless %}
<li class="row">
<div class="col-sm-9">
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
<div class="col-sm-3 text-muted">
<time>{{ post.date | date: "%Y-%m-%d" }}</time>
</div>
</li>
{% endfor %}
</ul>