forked from github.com/blag
32 lines
597 B
HTML
32 lines
597 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% if title %}
|
|
<h1>{{ title }}</h1>
|
|
{% endif %}
|
|
|
|
{% if date %}
|
|
<p>Written on {{ date.date() }}.</p>
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
|
|
{% if tags %}
|
|
<p>This entry was tagged
|
|
{% for tag in tags|sort(case_sensitive=true) %}
|
|
{%- if not loop.first and not loop.last %}, {% endif -%}
|
|
{%- if loop.last and not loop.first %} and {% endif %}
|
|
<a href="/tag.html">{{ tag }}</a>
|
|
{%- endfor %}
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %}
|