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 }}"> {{ post.title }} @ {{ post.date | date: site.short_date_format }} </a> </li> {% endfor %} </ul>