-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy patharchive.html
More file actions
22 lines (19 loc) · 680 Bytes
/
archive.html
File metadata and controls
22 lines (19 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: page
title: Archives
---
{%- assign postsByYear = site.posts | group_by_exp:"post", "post.date | date: '%Y'" -%}
<div class="mb-3" itemscope itemtype="http://schema.org/Blog">
<nav class="nav nav-pills">
{%- for year in postsByYear -%}
<a href="#{{ year.name | slugify }}" class="nav-link smoothScroll">{{ year.name }}</a>
{%- endfor -%}
</nav>
<hr />
{%- for year in postsByYear -%}
<fieldset id="{{ year.name | slugify }}" class="mt-3">
<legend class="border-bottom">{{ year.name }}</legend>
{% include archive_post.html show_tags=true collection=year.items %}
</fieldset>
{%- endfor -%}
</div>