diff options
author | sijanec <sijanecantonluka@gmail.com> | 2020-11-07 23:43:49 +0100 |
---|---|---|
committer | sijanec <sijanecantonluka@gmail.com> | 2020-11-07 23:43:49 +0100 |
commit | ed8911963ad821f4afecc52c8501e2d8f7bf10c1 (patch) | |
tree | 7241207ffd45b2796478b05656e6a71458aa0293 /_layouts | |
parent | dodal tekst ko je stran urejena (diff) | |
download | sijanec.eu-ed8911963ad821f4afecc52c8501e2d8f7bf10c1.tar sijanec.eu-ed8911963ad821f4afecc52c8501e2d8f7bf10c1.tar.gz sijanec.eu-ed8911963ad821f4afecc52c8501e2d8f7bf10c1.tar.bz2 sijanec.eu-ed8911963ad821f4afecc52c8501e2d8f7bf10c1.tar.lz sijanec.eu-ed8911963ad821f4afecc52c8501e2d8f7bf10c1.tar.xz sijanec.eu-ed8911963ad821f4afecc52c8501e2d8f7bf10c1.tar.zst sijanec.eu-ed8911963ad821f4afecc52c8501e2d8f7bf10c1.zip |
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/post.html | 12 |
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 %} |