-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchives.html
35 lines (27 loc) · 1.05 KB
/
archives.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
28
29
30
31
32
33
34
35
---
title: Archives
layout: default
---
{% include header.html %}
<div class="g-banner tags-banner {{ site.postPatterns | prepend: 'post-pattern-' }} {{ site.theme-color | prepend: 'bgcolor-' }}" data-theme="{{ site.theme-color }}">
<h2>ARCHIVES</h2>
</div>
<div class="tags-content" style="margin-top: 0px">
<ul class="tags-list" style="padding:40px">
{% for post in site.posts %}
{% unless post.next %}
<h3 style="margin-bottom: 8px">{{ post.date | date: "%b-%Y" }}</h3>
{% else %}
{% capture year %}{{ post.date | date: "%b, %Y" }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: "%b, %Y" }}{% endcapture %}
{% if year != nyear %}
<h3 style="margin-bottom: 8px">{{ post.date | date: "%b-%Y" }}</h3>
{% endif %}
{% endunless %}
<li>
<a href="{{ post.url | relative_url}}" style="color: black">{{ post.date | date:"%b-%-d-%Y" }} {{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
{% include footer.html %}