aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'tuxlite_tbs/templates/article.html')
-rw-r--r--tuxlite_tbs/templates/article.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/tuxlite_tbs/templates/article.html b/tuxlite_tbs/templates/article.html
new file mode 100644
index 0000000..23e3c86
--- /dev/null
+++ b/tuxlite_tbs/templates/article.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% block content %}
+ <div class='article'>
+ <div class="content-title">
+ <h2>{{ article.title }}</h2>
+ {% include "metadata.html" %}
+ </div>
+
+ <div>{{ article.content }}</div>
+
+ <hr>
+
+ <h2>Comments</h2>
+ {% include "twitter.html" %}
+ {% if DISQUS_SITENAME %}<div id="disqus_thread"></div>{% endif %}
+ </div>
+{% endblock %}