summaryrefslogtreecommitdiffstats
path: root/_layouts/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html12
1 files changed, 8 insertions, 4 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 9e03ee6..8bb4651 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -5,7 +5,9 @@ layout: default
{{ page.title }}
</h1>
<p>
- {{ page.date | date: site.short_date_format }}
+ {% 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 %}
-
@@ -36,8 +38,10 @@ layout: default
{{ content }}
{% if page.lastmodified %}
- <div class="dimmedtext textright">
- Objava je bila nazadnje urejena
- {{ page.lastmodified | date: short_date_format}}.
+ <div class="dimmedtext {% comment %} textright {% endcomment %}">
+ Objava je bila nazadnje urejena v
+ {% assign argv = page.lastmodified | split: ","%}
+ {% include datumincas.html %}
+ {{ return }}.
</div>
{% endif %}