diff options
author | skami <skami@skami-laptop.dyndns.org> | 2011-02-14 15:51:21 +0100 |
---|---|---|
committer | skami <skami@skami-laptop.dyndns.org> | 2011-02-14 15:51:21 +0100 |
commit | 6bdd8eff6061abfef995042a189ea5fd1e1a2e94 (patch) | |
tree | c4b20179ec23bfc8b6263ff0ad9fe7951ef1cc9c /lightweight/templates/article.html | |
parent | 7611f3de376ba45fc37c7fdab3a37ab250f8da1b (diff) | |
download | pelican-themes-6bdd8eff6061abfef995042a189ea5fd1e1a2e94.tar.gz |
Thème terminé - décidemment, j'ai du mal avec GIT!
Diffstat (limited to 'lightweight/templates/article.html')
-rw-r--r-- | lightweight/templates/article.html | 38 |
1 files changed, 26 insertions, 12 deletions
diff --git a/lightweight/templates/article.html b/lightweight/templates/article.html index b4d872e..68556bf 100644 --- a/lightweight/templates/article.html +++ b/lightweight/templates/article.html @@ -1,17 +1,31 @@ {% extends "base.html" %} + {% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %} -{% block content %} - <article class="post"> - <h2 class="page_title"><a href="{{ SITEURL }}/{{ article.url}}">{{ article.title }}</a></h2> - <details class="meta"> - <p> - Posté{%if article.date %} le <time pubdate="pubdate" datetime="{{ article.date }}">{{ article.locale_date }}</time>{% endif %}{% if article.author %} par {{ article.author }}{% endif %} dans «<a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>». - {% if articles.tags %}<br />Tags : {% for tag in article.tags %}{% if loop.index > 1%}, {% endif %}<span class="tag"><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a></span>{% endfor %}{%endif%} - </p> - </details> - <section class="post_content"> +{% block content %} + <article class="post"> + <h2 class="page_title"><a href="{{ article.url }}" rel="bookmark" title="{{SITENAME}} - {{ article.title }}">{{ article.title }}</a></h2> + + <section class="post_content"> {{ article.content }} - </section> - </article> + </section> + + {%include 'meta.html'%} + </article> + + {% if DISQUS_SITENAME %} + <div class="comments"> + <h2>Commentaires:</h2> + <div id="disqus_thread"></div> + <script type="text/javascript"> + var disqus_identifier = "{{ article.url }}"; + (function() { + var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; + dsq.src = 'http://{{ DISQUS_SITENAME }}.disqus.com/embed.js'; + (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); + })(); + </script> + </div> + {% endif %} + {% endblock %} |