aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/article.html
blob: 766de734c62997bddb264758698e62629f7c7c0e (plain) (blame)
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">
            <h1>{{ article.title }}</h1>
            {% include "metadata.html" %}
        </div>
	
        <div>{{ article.content }}</div>
	
        <hr>
    	   
        <h2>Comments</h2>
	{% include "twitter.html" %}
	{% include 'disqus.html' %}
    </div>
{% endblock %}