aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/article.html
blob: 23e3c86013ea8e09665279445f7c50935807509e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 %}