Files
pelican-hyde/templates/article.html
T
José Guilherme Vanz f946b964a6 Base pelican-hyde theme
2015-10-25 02:01:30 -02:00

12 lines
258 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="post">
<h1 class="post-title">{{ article.title }}</h1>
<span class="post-date">{{ article.locale_date }}</span>
{{ article.content }}
{% include 'fragments/disqus.html' %}
</div>
{% endblock %}