blob: a2b42bdc56c7858238b2d4ceb55d28cef36fbf5c (
plain) (
tree)
|
|
---
layout: default
---
<h1>
{{ page.title }}
</h1>
<p class=dimmedtext >
{% assign argv = page.date | append: ",true,true" | split: "," %}
{% include datumincas.html %}
{{ return }}
{% assign author = site.authors | where: 'short_name', page.author | first %}
{% assign anon = site.authors | where: 'short_name', "anonymous" | first %}
-
{% if author %}
<a href="/blog/avtorji.html#{{ author.short_name }}">{{ author.name }}</a>
{% else %}
<a href="/blog/avtorji.html#{{ anon.short_name }}">{{ anon.name }}</a>
{% endif %}
- kategorije:
{% assign i = 1 %}
{% for category in page.categories %}
{% assign i = i | plus: 1 %}
<a href="/blog/kategorije.html#{{ category }}">{{ category }}</a>{%
if i < page.categories.size %}, {% elsif i == page.categories.size %}
in
{% endif %}{% endfor %}.
- značke:
{% assign i = 1 %}
{% for tag in page.tags %}
{% assign i = i | plus: 1 %}
<a href="/blog/znacke.html#{{ tag }}">{{ tag }}</a>{%
if i < page.tags.size %}, {% elsif i == page.tags.size %}
in
{% endif %}{% endfor %}.
</p>
{{ content }}
{% if page.lastmodified %}
<div class="dimmedtext {% comment %} textright {% endcomment %}">
Objava je bila nazadnje urejena v
{% assign argv = page.lastmodified | split: ","%}
{% include datumincas.html %}
{{ return }}.
</div>
{% endif %}
<hr>
<h2>
kometarji
</h2>
{% assign argv = "" | split: "," %}
{% assign postid = "post|" | append: page.url %}
{% assign argv = argv | unshift: postid %} <!-- unshift doda na zač. arraya -->
{% capture commentsthreadhtml %}
{% include commentsthread.html %} <!-- outputs html directly -->
{% endcapture %}
<h3>
{{ return }}
{% assign argv = ",komentarjev,komentar,komentarja,komentarji" | prepend: return | split: "," %}
{% include slnum.html %}
{{ return }}
</h3>
{{ commentsthreadhtml }}
|