blog.notmyidea.org/theme/templates/article.html

9 lines
258 B
HTML

{% extends "base.html" %}
{% block links %}
<li><a href="{{ SITEURL }}"></a></li>
{% endblock %}
{% block content %}
<h1>{{ article.title }}</h1>
<p class="date">Published on {{ article.locale_date }}</p>
{{ article.content }}
{% endblock %}