-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy patharchives.html
More file actions
26 lines (26 loc) · 925 Bytes
/
archives.html
File metadata and controls
26 lines (26 loc) · 925 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
---
layout: page
title: "Archives"
subtitle: "List of the Adhy Suryadi's posts."
description: "This page show the all of posts of Adhy Suryadi Blog."
header-img: "img/archive-bg.jpg"
accordion-js: "https://cdn.ampproject.org/v0/amp-accordion-0.1.js"
---
<amp-accordion>
{% for post in site.posts %}
{% assign currentDate = post.date | date: "%Y" %}
{% if currentDate != myDate %}
{% unless forloop.first %}</ul></section>{% endunless %}
<section>
<h3 class="archive">{{ currentDate }}</h3>
<ul class="archives">
{% assign myDate = currentDate %}
{% endif %}
<li>{{ post.date | date: "%B %-d, %Y" }}
<ul>
<li><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
</ul>
</li>
{% if forloop.last %}</ul></section>{% endif %}
{% endfor %}
</amp-accordion>