From c920fe87b29e4aa9f92276d9daed535385dfcca8 Mon Sep 17 00:00:00 2001 From: Stanescu Eduard-Dan Date: Tue, 29 Oct 2024 16:22:44 +0200 Subject: [PATCH] Task 3584: Escaped title on blog posts --- default.hbs | 2 +- post.hbs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/default.hbs b/default.hbs index b8fc6ce..f617a57 100644 --- a/default.hbs +++ b/default.hbs @@ -16,7 +16,7 @@ {{!-- Base Meta --}} - {{meta_title}} + {{{meta_title}}} {{!-- Styles'n'Scripts --}} diff --git a/post.hbs b/post.hbs index b2bb676..35722ea 100644 --- a/post.hbs +++ b/post.hbs @@ -16,7 +16,7 @@ into the {body} of the default.hbs template --}}
{{#post}} -

{{title}}

+

{{{title}}}

@@ -37,7 +37,7 @@ into the {body} of the default.hbs template --}} Previous post
-
{{title}}
+
{{{title}}}
{{/prev_post}}
@@ -48,7 +48,7 @@ into the {body} of the default.hbs template --}} Next post -
{{title}}
+
{{{title}}}
{{/next_post}}