Files
omicron-ssg/omicron/ssg/templates/plain/article.html
T
2026-09-05 03:19:12 +02:00

34 lines
933 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% block title %}{{ page.title }} — {{ site.config.name }}{% endblock %}
{% block breadcrumb %}
<nav aria-label="breadcrumb">
<a href="{{ site.home_url() }}">{{ site.config.name }}</a>
<a href="{{ site.section_url(page.section) }}">{{ page.section }}</a>
{{ page.title }}
</nav>
{% endblock %}
{% block main %}
<article>
<header>
<h1>{{ page.title }}</h1>
<p>
<time datetime="{{ page.created }}">{{ page.created }}</time>
{% if page.updated %}
· Updated <time datetime="{{ page.updated }}">{{ page.updated }}</time>
{% endif %}
</p>
{% if page.tags %}
<ul>
{% for tag in page.tags | sort %}
<li><a href="{{ site.tag_url(tag) }}">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endif %}
</header>
{{ content }}
</article>
{% endblock %}