diff options
Diffstat (limited to 'dev-random')
-rw-r--r-- | dev-random/templates/article.html | 10 | ||||
-rw-r--r-- | dev-random/templates/index.html | 4 | ||||
-rw-r--r-- | dev-random/templates/tags.html | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/dev-random/templates/article.html b/dev-random/templates/article.html index ab5679c..6048b5a 100644 --- a/dev-random/templates/article.html +++ b/dev-random/templates/article.html @@ -22,8 +22,8 @@ </a> </h1> <div class="meta"> - Dans «<a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>» - par <a href="{{ SITEURL }}/author/{{article.author}}.html">{{ article.author}}</a> + Dans «<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>» + par <a href="{{ SITEURL }}/{{article.author.url}}">{{ article.author}}</a> </div> </header> <div class="post-content"> @@ -31,9 +31,9 @@ </div> <footer class="post-footer"> <div class="meta"> - Posté dans «<a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>» - par <a href="{{ SITEURL }}/author/{{article.author}}.html">{{ article.author}}</a><br /> - Mots-clés: {% for tag in article.tags %} #<a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a>{% endfor %} + Posté dans «<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>» + par <a href="{{ SITEURL }}/{{article.author.url}}">{{ article.author}}</a><br /> + Mots-clés: {% for tag in article.tags %} #<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% endfor %} </div> </footer> {% if DISQUS_SITENAME %} diff --git a/dev-random/templates/index.html b/dev-random/templates/index.html index 11314d1..aeb5986 100644 --- a/dev-random/templates/index.html +++ b/dev-random/templates/index.html @@ -18,8 +18,8 @@ </a> </h1> <div class="meta"> - Dans «<a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>» - par <a href="{{ SITEURL }}/author/{{article.author}}.html">{{ article.author}}</a> + Dans «<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>» + par <a href="{{ SITEURL }}/{{article.author.url}}">{{ article.author}}</a> </div> </header> <div class="post-content"> diff --git a/dev-random/templates/tags.html b/dev-random/templates/tags.html index b95d401..5d8a8c7 100644 --- a/dev-random/templates/tags.html +++ b/dev-random/templates/tags.html @@ -7,7 +7,7 @@ <h1>Mots-clés</h1> <ul id="tagslist"> {% for tag in tag_cloud %} - <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/tag/{{ tag.0 }}.html">{{ tag.0 }}</a></li> + <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0 }}</a></li> {% endfor %} </ul> </section> |