-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategories.html
More file actions
31 lines (31 loc) · 757 Bytes
/
categories.html
File metadata and controls
31 lines (31 loc) · 757 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
---
layout: default
title: "[Velsheda] Categories"
---
<div class="columns">
<div class="column col-4 col-xs-12">
<h2>Categories:</h2>
<ul>
{% for category in site.categories %}
<li><a href="#{{ category | first }}">{{ category | first }}</a></li>
{% endfor %}
</ul>
</div>
<div class="column col-8 col-xs-12">
<h2>Articles by Category:</h2>
<ul>
{% for category in site.categories %}
<li><a name="{{ category | first }}">{{ category | first }}</a>
<ul>{% for posts in category %}
{% for post in posts %}
{% if post.title != null %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
{% endfor %}</ul>
</li>
{% endfor %}
</ul>
</div>
</div>
Page generated: {{ site.time | date_to_string }}