From 34ef603267f60e1d7473336e2779a4f3ae430a17 Mon Sep 17 00:00:00 2001 From: pgarcia Date: Wed, 13 Aug 2025 13:49:21 +0200 Subject: [PATCH] Delete templates/post_header.tmpl~ --- templates/post_header.tmpl~ | 64 ------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 templates/post_header.tmpl~ diff --git a/templates/post_header.tmpl~ b/templates/post_header.tmpl~ deleted file mode 100644 index b82cd89..0000000 --- a/templates/post_header.tmpl~ +++ /dev/null @@ -1,64 +0,0 @@ -## -*- coding: utf-8 -*- -<%namespace name="helper" file="post_helper.tmpl"/> -<%namespace name="comments" file="comments_helper.tmpl"/> - -<%def name="html_title()"> -%if title and not post.meta('hidetitle'): -

${post.title()|h}

-%endif - - -<%def name="html_translations(post)"> - % if len(post.translated_to) > 1: -
-

${messages("Also available in:")}

- % for langname in sorted(translations): - % if langname != lang and post.is_translation_available(langname): -

${messages("LANGUAGE", langname)}

- % endif - % endfor -
- % endif - - -<%def name="html_sourcelink()"> - % if show_sourcelink: -

${messages("Source")}

- % endif - - -<%def name="html_post_header()"> -
- ${html_title()} - - ${html_translations(post)} -
-