This commit is contained in:
2023-10-31 23:23:51 +01:00
commit ef15a6ec8f
20 changed files with 1707 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{% extends "base.html" %}
{% block content %}
<div class="article-header">
<h1>{{ page.title }}</h1>
<div class="info">
<p class="date">{{ page.date | date(format="%B %-d, %Y") }}</p>
<p class="tags">
{% for tag in page.taxonomies["tags"] %}
<a href="{{ get_taxonomy_url(kind="tags", name=tag) }}">#{{ tag }}</a>
{%- endfor %}
</p>
</div>
</div>
<div class="typography">
{{ page.content | safe }}
</div>
{% endblock %}