Skip to content

Commit

Permalink
Merge pull request artemsheludko#33 from akashgiricse/master
Browse files Browse the repository at this point in the history
Fix post urls in tags list page
  • Loading branch information
artemsheludko authored Jul 10, 2018
2 parents 9809dc5 + 980086f commit cafe07d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tags.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2 id="{{ this_word | cgi_escape }}">{{ this_word }}</h2>
<!-- lists all posts corresponding to specific tag...-->
{% for post in site.tags[this_word] %}{% if post.title != null %}
<div class="tag-list">
<span><a href="{{ post.url }}">{{ post.title }}</a></span>
<span><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></span>
<small><span>| {{ post.date | date_to_string }}</span></small>
</div>
{% endif %}{% endfor %}
Expand Down

0 comments on commit cafe07d

Please sign in to comment.