aboutsummaryrefslogtreecommitdiffstats
path: root/lightweight/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'lightweight/templates/article.html')
-rw-r--r--lightweight/templates/article.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/lightweight/templates/article.html b/lightweight/templates/article.html
new file mode 100644
index 0000000..68556bf
--- /dev/null
+++ b/lightweight/templates/article.html
@@ -0,0 +1,31 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %}
+
+{% 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>
+
+ {%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 %}