diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/post.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 84f6d39..86c1f10 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -10,15 +10,15 @@ layout: default {% assign anon = site.authors | where: 'short_name', "anonymous" | first %} - {% if author %} - <a href="{{ author.url }}">{{ author.name }}</a> + <a href="/blog/avtorji.html#{{ author.short_name }}">{{ author.name }}</a> {% else %} - <a href="{{ anon.url }}">{{ anon.name }}</a> + <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#{{ category }}">{{ category }}</a>{% + <a href="/blog/kategorije.html#{{ category }}">{{ category }}</a>{% if i < page.categories.size %}, {% elsif i == page.categories.size %} in {% endif %}{% endfor %}. @@ -26,7 +26,7 @@ layout: default {% assign i = 1 %} {% for tag in page.tags %} {% assign i = i | plus: 1 %} - <a href="/blog/znacke#{{ tag }}">{{ tag }}</a>{% + <a href="/blog/znacke.html#{{ tag }}">{{ tag }}</a>{% if i < page.tags.size %}, {% elsif i == page.tags.size %} in {% endif %}{% endfor %}. |