summaryrefslogtreecommitdiffstatshomepage
path: root/templates/atom.xml
diff options
context:
space:
mode:
authorWolfgang Müller2021-06-16 16:18:47 +0200
committerWolfgang Müller2021-06-16 17:04:24 +0200
commitf28cb705310ff890c34ff45217b7870bcab5a66a (patch)
treef0f980f1496cadcb75b8ba09bff02bbde53129ff /templates/atom.xml
parent7fb5c0f88274637df2974fd06b8d9a6b42969d83 (diff)
downloadzunzuncito-f28cb705310ff890c34ff45217b7870bcab5a66a.tar.gz
templates: Make page titles mandatory
Currently we allow empty post titles, gracefully falling back to a default value. This increases complexity somewhat. Since we think we'll always be able to think of a title for a post, make it mandatory for now to provide one.
Diffstat (limited to 'templates/atom.xml')
-rw-r--r--templates/atom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/atom.xml b/templates/atom.xml
index ab0012c..7792b32 100644
--- a/templates/atom.xml
+++ b/templates/atom.xml
@@ -22,7 +22,7 @@
{%- for page in pages %}
<entry xml:lang="{{ page.lang }}">
<author><name>{{ config.extra.author }}</name></author>
- <title>{{ page.title | default(value="Post № " ~ page.slug)}}</title>
+ <title>{{ page.title }}</title>
<published>{{ page.date | date(format="%+") }}</published>
<updated>{{ page.updated | default(value=page.date) | date(format="%+") }}</updated>
<link href="{{ page.permalink | safe }}" type="text/html"/>