summaryrefslogtreecommitdiffstats
path: root/blog.html
blob: 8e05ef9a6935d0ecaf2118abe393693026541db5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
layout: default
title: blog
---
<h1>
	Zadnje objave
</h1>
<ul>
	{% for post in site.posts %}
		<li>
			<h3>
				<a href="{{ post.url | remove: ".html" }}">
					{{ post.title }} @ {{ post.date | date: site.short_date_format }}
				</a>
			</h3>
			{{ post.excerpt }}
		</li>
	{% endfor %}
</ul>