-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchives.html
62 lines (54 loc) · 1.99 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: default
title : Archives
description: "Everything is here"
---
<!-- Page Header -->
<header class="intro-header" style="background-image: url('{% if page.header-img %}{{ site.baseurl }}/{{ page.header-img }}{% else %}{{ site.header-img }}{% endif %}')">
<div style="background: rgba(0, 0, 0,0.5);">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading" id="tag-heading">
<h1>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</h1>
<span class="subheading">{{ page.description }}</span>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% capture next_month %}{{ post.previous.date | date: "%B" }}{% endcapture %}
{% if forloop.first %}
<legend id="{{this_year}}-{{this_month}}">{{this_year}} {{this_month}}</legend>
<ul>
{% endif %}
<li><span>{{ post.date | date: "%F" }}</span> » <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li>
{% if forloop.last %}
</ul>
{% else %}
{% if this_year != next_year %}
</ul>
<legend id="{{next_year}}-{{next_month}}">{{next_year}} {{next_month}}</legend>
<ul>
{% else %}
{% if this_month != next_month %}
</ul>
<legend id="{{next_year}}-{{next_month}}">{{next_year}} {{next_month}}</legend>
<ul>
{% endif %}
{% endif %}
{% endif %}
{% endfor%}
{% assign posts_collate = nil %}
</div>
</div>
</div>