⛓ Fix broken tag link on post.hbs (#315)
no issue Top link for tag was missing a `/`.
This commit is contained in:
parent
2ca409032a
commit
d6d9711b9d
2
post.hbs
2
post.hbs
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue