diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2021-09-30 00:16:12 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2021-09-30 00:16:12 +0300 |
commit | a835d3328deea93b05803d95d34e0c66618dc9c1 (patch) | |
tree | 03b332dff1a502de8aaa629a878fcc7d3550ac2d /templates/page.html | |
parent | 1581c10376dc3df7206da1feebc1e237e137d1be (diff) | |
download | yaroslavps.com-a835d3328deea93b05803d95d34e0c66618dc9c1.tar.gz yaroslavps.com-a835d3328deea93b05803d95d34e0c66618dc9c1.zip |
Template and CSS improvements
* Improvements to weblog.html and base.html to not show on the indeces
pages without dates, i.e. making them hidden drafts.
* media print rule to be able to comfortably print articles.
Diffstat (limited to 'templates/page.html')
-rw-r--r-- | templates/page.html | 4 |
1 files changed, 4 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) }} |