aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/templates/article.html')
-rw-r--r--bootstrap/templates/article.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/bootstrap/templates/article.html b/bootstrap/templates/article.html
new file mode 100644
index 0000000..7f86290
--- /dev/null
+++ b/bootstrap/templates/article.html
@@ -0,0 +1,15 @@
+{% extends "base.html" %}
+{% block indextitle %}{% endblock %}
+{% block content %}
+ <div class='article'>
+ <div class="page-header"><h1>{{ article.title }}</h1></div>
+ <div class="well small">{% include "metadata.html" %}</div>
+ <div>{{ article.content }}</div>
+ <div>
+ <h2>Comments</h2>
+ {% include "twitter.html" %}
+ {% if FACEBOOK_APPID %}<div id="disqus_thread"></div>{% endif %}
+ {% if FACEBOOK_APPID %}<div class="fb-comments" data-href="{{ FQ_SITEURL }}/{{ article.url }}" data-num-posts="10" data-width="760"></div>{% endif %}
+ <div>
+ </div>
+{% endblock %}