20 lines
428 B
HTML
20 lines
428 B
HTML
{% 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>
|
|
|
|
{% include "twitter.html" %}
|
|
{% if DISQUS_SITENAME %}
|
|
<h2>Comments</h2>
|
|
{% include "disqus.html" %}
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|