From a27db05d94ef6fcbaccc7514927a3096e0caafd7 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 7 Jun 2024 16:21:00 +0000 Subject: [PATCH] blog: Fix Python syntax error Signed-off-by: Michael Tremer --- src/templates/blog/write.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/templates/blog/write.html b/src/templates/blog/write.html index 048f90ac..e0cb8ba3 100644 --- a/src/templates/blog/write.html +++ b/src/templates/blog/write.html @@ -11,13 +11,11 @@ {% block head %} {% if post %} {% module OpenGraph( - title={{ _("IPFire Blog - Edit %s") % post.title }}, - description="Edit unpublished Blog Post {{ post.title }}", + title=_("IPFire Blog - Edit %s") % post.title, ) %} {% else %} {% module OpenGraph( - title={{ _("IPFire Blog - Write A New Post") }}, - description="Write A New Post for the IPFire Blog", + title=_("IPFire Blog - Write A New Post"), ) %} {% end %} {% end block %} -- 2.47.3