blob: 44e62e55fd18bf7cea02486b017f7759d2eb9f22 (
plain) (
tree)
|
|
---
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>
|