{% extends "base.html" %}
{% block title %}{{ SITENAME }} - {{ article.title |striptags }}{% endblock %}
{% block content %}
<article class="post">
<h1 class="page_title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
{%include 'meta.html'%}
<section class="post_content">
{{ article.content }}
</section>
</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 %}
{% if article.related_posts and article.related_posts %}
<h2>À lire aussi :</h2>
<ul>
{% for related_post in article.related_posts %}
<li><a href="{{ SITEURL }}/{{ related_post.url }}">{{ related_post.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}