-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.html
More file actions
29 lines (25 loc) · 999 Bytes
/
Copy patharchive.html
File metadata and controls
29 lines (25 loc) · 999 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
---
title: Time Machine
subtitle: Meta Coder's Timeline
layout: default
cover-image: 4.jpg
---
{% for post in site.posts %}
{% unless post.next %}
<h2 class="fa fa-laptop" style="font-size:large">
<span>{{ post.date | date: '%B,%Y' }}</span>
</h2>
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture month %}{{ post.date | date: '%m' }}{% endcapture %}
{% capture nextyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% capture nextmonth %}{{ post.next.date | date: '%m' }}{% endcapture %}
{% if year != nextyear or month != nextmonth %}
<hr>
<h2 class="fa fa-laptop" style="font-size:large">
<span>{{ post.date | date: '%B,%Y' }}</span>
</h2>
{% endif %}
{% endunless %}
<p class="blogtitle"><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a><small> • {{ post.date | date: site.date_format }}</small></p>
{% endfor %}