Files
blog.raer.me/templates/article.html
2024-01-18 12:12:27 -08:00

30 lines
701 B
HTML

{% extends "base.html" %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
{% if title %}
<h2>{{ title }}</h2>
{% endif %}
{% if description %}
<p>{{ description }}</p>
{% endif %}
<aside>
<p>{% if tags %} tagged with
{% 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="/tags/{{ tag }}.html">#{{ tag }}</a>
{%- endfor %}
{% endif %}
</p>
<p>published on {{ date.date() }} at {{ date.time() }}</p>
<p>{%- if edited %} edited on {{ edited }}{% endif -%}</p>
</aside>
{{ content }}
{% endblock %}