diff options
Diffstat (limited to 'monospace/templates/article.html')
-rw-r--r-- | monospace/templates/article.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/monospace/templates/article.html b/monospace/templates/article.html new file mode 100644 index 0000000..9758fdc --- /dev/null +++ b/monospace/templates/article.html @@ -0,0 +1,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 %} |