-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcategory.html
More file actions
executable file
·44 lines (33 loc) · 842 Bytes
/
category.html
File metadata and controls
executable file
·44 lines (33 loc) · 842 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: article
title: Categories
permalink: /category1/
---
{{ category.html }}
<div id="content">
<div class="text-post posts">
{% capture archives_year %}
{{ 'now' | date: '%Y' }}
{% endcapture %}
{% for post in site.posts %}
{% capture post_year %}
{{ post.date | date: '%Y' }}
{% endcapture %}
{% if archives_year != post_year %}
{% assign archives_year = post_year %}
<h2>{{ archives_year }}</h2>
{% endif %}
{{ post.date | date: "%m-%d" }} - <a href="{{post.url}}">{{ `post.title` }}</a> </br>
{% endfor %}
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</div>
</div>