blob: 3b8e2fdf977a0c5e51fb3c25d20adbf577351e95 (
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
24
25
26
27
28
29
|
---
layout: default
---
<h1>
{{ page.name }}
</h1>
<h2>
{{ page.position }}
</h2>
{{ content }}
<h2>objave:</h2>
{% assign argv = page.short_name | split: "," %}
{% include posts_by_author.html %}
{% assign posts_by_author = return %}
<h3>
{% assign argv = ",objav,objava,objavi,objave" | prepend: posts_by_author.size | split: "," %}
{% include slnum.html %}
{{ posts_by_author.size }} {{ return }}
</h3>
<ul>
{% for post in posts_by_author %}
<li>
<a href="{{ post.url }}">
{{ post.title }} @ {{ post.date | date: site.short_date_format }}
</a>
</li>
{% endfor %}
</ul>
|