]> git.ipfire.org Git - ipfire.org.git/commitdiff
blog: Fix Python syntax error
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 7 Jun 2024 16:21:00 +0000 (16:21 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 7 Jun 2024 16:21:00 +0000 (16:21 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/templates/blog/write.html

index 048f90acb3068caf4b429fc24779b91d0a3f1ff6..e0cb8ba334428837cdcb3aff861796e01c03433a 100644 (file)
 {% 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 %}