Skip to content

Commit

Permalink
Task 3584: Escaped title on blog posts
Browse files Browse the repository at this point in the history
  • Loading branch information
ZsharE committed Oct 29, 2024
1 parent 81db081 commit c920fe8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<meta name="theme-color" content="#0da58e">

{{!-- Base Meta --}}
<title>{{meta_title}}</title>
<title>{{{meta_title}}}</title>
<meta name="HandheldFriendly" content="True" />

{{!-- Styles'n'Scripts --}}
Expand Down
6 changes: 3 additions & 3 deletions post.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ into the {body} of the default.hbs template --}}
<div class="docs-box docs-post">
{{#post}}

<h1>{{title}}</h1>
<h1>{{{title}}}</h1>

<div class="inline_share_toolbox">
<a class="share-facebook" title="Share to Facebook" target="_blank" href="https://www.facebook.com/sharer.php?u={{url absolute='true'}}"><i class="fab fa-facebook-f"></i></a>
Expand All @@ -37,7 +37,7 @@ into the {body} of the default.hbs template --}}
<i class="far fa-arrow-left"></i>
<span>Previous post</span>
</div>
<div class="article">{{title}}</div>
<div class="article">{{{title}}}</div>
</a>
{{/prev_post}}
</div>
Expand All @@ -48,7 +48,7 @@ into the {body} of the default.hbs template --}}
<span>Next post</span>
<i class="far fa-arrow-right"></i>
</div>
<div class="article">{{title}}</div>
<div class="article">{{{title}}}</div>
</a>
{{/next_post}}
</div>
Expand Down

0 comments on commit c920fe8

Please sign in to comment.