forked from rootkovska/rootkovska.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathissues.html
More file actions
25 lines (21 loc) · 721 Bytes
/
issues.html
File metadata and controls
25 lines (21 loc) · 721 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
---
layout: default
title: Issues
permalink: /issues/
permalink: index.html
---
<div class="home">
{% for post in site.posts %}
{% capture post_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% if post_year != current_year %}
{% unless forloop.first %}</ul>{% endunless %}
<p>{{ post_year }}</p>
<ul class="post-list">
{% capture current_year %}{{ post_year }}{% endcapture %}
{% endif %}
<li>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
</li>
{% endfor %}
</div>