consistently use triple handlebars to output URL
authorDan Allen <dan@opendevise.com>
Sat, 25 Apr 2020 09:28:29 +0000 (03:28 -0600)
committerDan Allen <dan@opendevise.com>
Sat, 25 Apr 2020 09:28:29 +0000 (03:28 -0600)
src/partials/nav-menu.hbs
src/partials/toolbar.hbs

index 59be5f2..46adf92 100644 (file)
@@ -2,7 +2,7 @@
 <div class="nav-panel-menu is-active" data-panel="menu">
   <nav class="nav-menu">
     {{#with @root.page.componentVersion}}
-    <h3 class="title"><a href="{{relativize ./url}}">{{./title}}</a></h3>
+    <h3 class="title"><a href="{{{relativize ./url}}}">{{./title}}</a></h3>
     {{/with}}
 {{> nav-tree navigation=this}}
   </nav>
index dd4e3d7..c6e9ea6 100644 (file)
@@ -1,7 +1,7 @@
 <div class="toolbar" role="navigation">
 {{> nav-toggle}}
   {{#with site.homeUrl}}
-  <a href="{{relativize this}}" class="home-link{{#if @root.page.home}} is-current{{/if}}"></a>
+  <a href="{{{relativize this}}}" class="home-link{{#if @root.page.home}} is-current{{/if}}"></a>
   {{/with}}
 {{> breadcrumbs}}
 {{> page-versions}}