aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/article.html
blob: 4289464ee1f072ec44e22747f32c55dd81d4ab48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %}
{% block content %}
    <div class='article'>
        <div class="content-title">
            <h1>{{ article.title }}</h1>
            {% include "metadata.html" %}
        </div>
	
        <div>{{ article.content }}</div>
	
        <hr>

	{% include "twitter.html" %}
    {% if DISQUS_SITENAME %}
        <h2>Comments</h2>
        {% include "disqus.html" %}
    {% endif %}
    </div>
{% endblock %}