⛓ Fix broken tag link on post.hbs (#315)

no issue

Top link for tag was missing a `/`.
This commit is contained in:
Aileen Nowak 2017-06-20 14:55:16 +07:00 committed by John O'Nolan
parent 2ca409032a
commit d6d9711b9d
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ into the {body} of the default.hbs template --}}
<section class="post-full-meta">
<time class="post-full-meta-date" datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMMM YYYY"}}</time>
{{#if tags}}
<span class="date-divider">/</span> <a href="{{@blog.url}}tag/{{tags.[0].slug}}">{{tags.[0].name}}</a>
<span class="date-divider">/</span> <a href="{{@blog.url}}/tag/{{tags.[0].slug}}">{{tags.[0].name}}</a>
{{/if}}
</section>
<h1 class="post-full-title">{{title}}</h1>