aboutsummaryrefslogtreecommitdiffstats
path: root/brownstone
diff options
context:
space:
mode:
authorViktor Lin <asfgjk123123@gmail.com>2015-04-07 00:22:46 +0800
committerViktor Lin <asfgjk123123@gmail.com>2015-04-07 00:22:46 +0800
commit7937781e5da953ff7028d194bb463333248c3b97 (patch)
treef260ca32dcd796a0c3dafd80b66e0a2e737c3e02 /brownstone
parentea1634c83e83234469c43abff88187b0af5806f0 (diff)
downloadpelican-themes-7937781e5da953ff7028d194bb463333248c3b97.zip
pelican-themes-7937781e5da953ff7028d194bb463333248c3b97.tar.gz
pelican-themes-7937781e5da953ff7028d194bb463333248c3b97.tar.bz2
fix wrong category link in archives.html
Diffstat (limited to 'brownstone')
-rw-r--r--brownstone/templates/archives.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/brownstone/templates/archives.html b/brownstone/templates/archives.html
index 5adaacb..43d6c5c 100644
--- a/brownstone/templates/archives.html
+++ b/brownstone/templates/archives.html
@@ -8,7 +8,7 @@
{% 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>