From eb8f8485cac87d2621ba673f44c7223dbe32388f Mon Sep 17 00:00:00 2001 From: tymoteusz Date: Sun, 28 Sep 2025 19:04:56 +0200 Subject: [PATCH] fix spaces & raw content --- templates/en/partials/footer.html.twig | 2 +- templates/partials/footer.html.twig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/en/partials/footer.html.twig b/templates/en/partials/footer.html.twig index a890fa5..df26df6 100644 --- a/templates/en/partials/footer.html.twig +++ b/templates/en/partials/footer.html.twig @@ -6,7 +6,7 @@ © {{ year }} {% if theme_config.footer.info_en is defined and theme_config.footer.info_en is not empty %} -  | {{ theme_config.footer.info_en }} + | {{ theme_config.footer.info_en|raw }} {% endif %} diff --git a/templates/partials/footer.html.twig b/templates/partials/footer.html.twig index ca1637c..989b72d 100644 --- a/templates/partials/footer.html.twig +++ b/templates/partials/footer.html.twig @@ -6,7 +6,7 @@ © {{ year }} {% if theme_config.footer.info is defined and theme_config.footer.info is not empty %} -  | {{ theme_config.footer.info }} + | {{ theme_config.footer.info|raw }} {% endif %}