Skip to content

Commit

Permalink
consistently use triple handlebars for URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
mojavelinux committed May 10, 2020
1 parent af7e9af commit 8db2030
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/partials/head-info.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{#with page.canonicalUrl}}
<link rel="canonical" href="{{this}}">
<link rel="canonical" href="{{{this}}}">
{{/with}}
{{#unless (eq page.attributes.pagination undefined)}}
{{#with page.previous}}
Expand Down
2 changes: 1 addition & 1 deletion src/partials/header-content.hbs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<header class="header">
<nav class="navbar">
<div class="navbar-brand">
<a class="navbar-item" href="{{or site.url (or siteRootUrl siteRootPath)}}">{{site.title}}</a>
<a class="navbar-item" href="{{{or site.url (or siteRootUrl siteRootPath)}}}">{{site.title}}</a>
<button class="navbar-burger" data-target="topbar-nav">
<span></span>
<span></span>
Expand Down

0 comments on commit 8db2030

Please sign in to comment.