blob: 4289464ee1f072ec44e22747f32c55dd81d4ab48 (
plain) (
tree)
|
|
{% 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 %}
|