aboutsummaryrefslogtreecommitdiffstats
path: root/brownstone
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2015-04-23 14:48:31 +0200
committerJustin Mayer <entroP@gmail.com>2015-04-23 14:48:31 +0200
commitc31fb657b54696e9426249bdee5dcd111ec1ec40 (patch)
tree643bdf084ec0c005496168e8b8aaf68a37f87c89 /brownstone
parent95ff21428dd8e7a1c0b0880536184845adead8b8 (diff)
parent7937781e5da953ff7028d194bb463333248c3b97 (diff)
downloadpelican-themes-c31fb657b54696e9426249bdee5dcd111ec1ec40.zip
pelican-themes-c31fb657b54696e9426249bdee5dcd111ec1ec40.tar.gz
pelican-themes-c31fb657b54696e9426249bdee5dcd111ec1ec40.tar.bz2
Merge pull request #298 from Zekt/patch-1
Brownstone: fix wrong categories links 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>