aboutsummaryrefslogtreecommitdiffstats
path: root/Just-Read/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'Just-Read/templates/article.html')
-rw-r--r--Just-Read/templates/article.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/Just-Read/templates/article.html b/Just-Read/templates/article.html
new file mode 100644
index 0000000..a5bf08f
--- /dev/null
+++ b/Just-Read/templates/article.html
@@ -0,0 +1,29 @@
+{% extends "base.html" %}
+{% block title %}{{ article.title }} - {{ SITENAME }}{% endblock %}
+{% block content %}
+<div role="main" class="content clearfix">
+ <article>
+ <div class="post wrapper">
+ <h1>{{ article.title }}</h1>
+ {{ article.content }}
+
+ {% if DISQUS_SITENAME %}
+ <div class="comments">
+ <h2>Comments !</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 %}
+ </div>
+
+ {% include 'metadata.html' %}
+ </article>
+</div>
+{% endblock %} \ No newline at end of file