From 3922d2d93d9dcd8fcc9bb5e9d5ad5d289b2f9ed7 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 7 Jun 2024 16:17:13 +0000 Subject: [PATCH] docs: Fix Python syntax error in search Signed-off-by: Michael Tremer --- src/templates/docs/search-results.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/templates/docs/search-results.html b/src/templates/docs/search-results.html index 3c7ba154..2d1b9df7 100644 --- a/src/templates/docs/search-results.html +++ b/src/templates/docs/search-results.html @@ -4,8 +4,8 @@ {% block head %} {% module OpenGraph( - title={{ _("IPFire Documentation - Search: '%s'") % q }}, - description={{ _("Search Results for '%s'") % q }}, + title=_("IPFire Documentation - Search: '%s'") % q, + description=_("Search Results for '%s'") % q, ) %} {% end block %} -- 2.47.3