aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill-en/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'waterspill-en/templates/article.html')
-rw-r--r--waterspill-en/templates/article.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/waterspill-en/templates/article.html b/waterspill-en/templates/article.html
new file mode 100644
index 0000000..dcef284
--- /dev/null
+++ b/waterspill-en/templates/article.html
@@ -0,0 +1,37 @@
+{% extends "base.html" %}
+{% block title %}{{ article.title }}{% endblock %}
+{% block content %}
+
+
+<div class="blogItem">
+
+ <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
+ <h3>{{ article.locale_date }}</h3>
+
+ {{ article.content }}
+ {% include 'twitter.html' %}
+
+ <h3 class="blogMeta">By <a href="#">{{ article.author }}</a>{% if not SUPPRESS_ITEM_CATEGORIES %}, Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>{% endif %}</h3>
+ <h3 class="blogMeta">Tags: {% for tag in article.tags %}
+<span><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> / </span>
+{% endfor %}</h3>
+
+ </div><!-- end #blogItem -->
+{% if DISQUS_SITENAME %}
+<div class="blogItem">
+
+ <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 %}
+
+ <!-- end #content -->
+{% endblock %}