Skip to content

Commit

Permalink
Merge pull request getpelican#298 from Zekt/patch-1
Browse files Browse the repository at this point in the history
Brownstone: fix wrong categories links in archives.html
  • Loading branch information
justinmayer committed Apr 23, 2015
2 parents 95ff214 + 7937781 commit c31fb65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brownstone/templates/archives.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h2 class="title">Archives de {{ SITENAME }}</h2>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
<dd>Catégorie : <a href="{{ article.category }}">{{ article.category }}</a></dd>
<dd>Catégorie : <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a></dd>
{% endfor %}
</dl>
</div>
Expand Down

0 comments on commit c31fb65

Please sign in to comment.