From: Michael Tremer Date: Fri, 7 Jun 2024 16:21:00 +0000 (+0000) Subject: blog: Fix Python syntax error X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a27db05d94ef6fcbaccc7514927a3096e0caafd7;p=ipfire.org.git blog: Fix Python syntax error Signed-off-by: Michael Tremer --- 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 %}