-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 871 Bytes
/
index.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
---
layout: default
title: Home
---
<h1 class="page-heading">Eseji</h1>
<div class="posts">
{% for post in site.categories.esej %}
<div class="post">
<ul>
<span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a>
</ul>
</div>
{% endfor %}
</div>
<h1 class="page-heading">Recenzije</h1>
<div class="posts">
{% for post in site.categories.recenzija %}
<div class="post">
<ul>
<span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a>
</ul>
</div>
{% endfor %}
</div>
<h1 class="page-heading">Arhiva</h1>
<div class="posts">
{% for post in site.categories.arhiva %}
<div class="post">
<ul>
<span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a>
</ul>
</div>
{% endfor %}
</div>