aboutsummaryrefslogblamecommitdiffstats
path: root/monospace/templates/article.html
blob: 9758fdc9268847f2a6690911d02d2e4bdfdfad19 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                                                                              
{% extends "base.html" %}
{% block title %}{{ super() }} : {{ article.title }}{% endblock %}
{% block content %}        
<header>
<h1><a href="{{ SITEURL }}" id="site-title"> {#{{ SITENAME }}#} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> {#:#}
        <a href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1>
    {% if not HIDE_DATE %}<time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>{% endif %}
</header>
<article>
    {{ article.content }}
</article>
{% endblock %}