summaryrefslogtreecommitdiffstats
path: root/_layouts/author.html
blob: 44e62e55fd18bf7cea02486b017f7759d2eb9f22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
---
<h1>
	{{ page.name }}
</h1>
<h2>
	{{ page.position }}
</h2>
{{ content }}

<h2>objave:</h2>
<ul>
	{% assign argv = page.short_name | split: "," %}
	{% include posts_by_author.html %}
	{% for post in return %}
		<li>
			<a href="{{ post.url | remove: ".html" }}">
				{{ post.title }} @ {{ post.date | date: site.short_date_format }}
			</a>
		</li>
	{% endfor %}
</ul>