Skip to content

Commit

Permalink
Merge pull request #44 from yfwz100/patch-1
Browse files Browse the repository at this point in the history
Fix tag url in article pages.
  • Loading branch information
alanorth committed Apr 12, 2016
2 parents 43f23f0 + 5318084 commit 1e1cfb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alchemy/templates/article.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1 class="post-title">
<li class="muted">&middot;</li>
<li>
{% for tag in article.tags %}
<a href="{{ SITEUrL }}/tag/{{ tag }}.html">{{ tag }}</a>{% if not loop.last %}, {% endif %}
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</li>
{% endif %}
Expand Down

0 comments on commit 1e1cfb9

Please sign in to comment.