diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/page.html | 4 | ||||
-rw-r--r-- | templates/weblog.html | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/templates/page.html b/templates/page.html index 54b049f..c7b6351 100644 --- a/templates/page.html +++ b/templates/page.html @@ -11,9 +11,13 @@ {% block header %} <h1>{{ page.title }}</h1> <p class="publish-date"> +{% if page.date %} {{ trans(key="published", lang=lang) }} {{ page.date | date(format="%Y-%m-%d %H:%M UTC") }} {{ trans(key="published_on", lang=lang) }} +{% else %} + {{ trans(key="not_published", lang=lang) }} +{% endif %} {% if page.permalink is containing("weblog") %} <a href="{% if lang != "en" %}/{{ lang }}{% endif %}/weblog"> {{ trans(key="weblog_title", lang=lang) }} diff --git a/templates/weblog.html b/templates/weblog.html index 6638faf..855c0ed 100644 --- a/templates/weblog.html +++ b/templates/weblog.html @@ -48,15 +48,19 @@ {% block content %} <div class="posts-list"> {% for post in paginator.pages %} + {% if post.date %} <div class="post-container partial"> <h2> <a href="{{ post.permalink }}">{{ post.title }}</a> + {% if post.date %} <span class="publish-date">{{ post.date | date }}</span> + {% endif %} </h2> {% if post.summary %} {{ post.summary | safe }} {% endif %} </div> + {% endif %} {% endfor %} </div> {% if paginator %} |