15 lines
596 B
HTML
15 lines
596 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block title %}{{ page.title }} - {{ config.title }}{% endblock %}
|
|
|
|
{% block main %}
|
|
<article class="h-entry">
|
|
<div>
|
|
<h1 class="p-name">{{ page.title }}</h1>
|
|
<a class="u-url" hidden aria-hidden="true" href="{{ page.permalink }}">Permalink</a>
|
|
{%- if page.date -%}<time class="dt-published" datetime="{{ page.date }}">📅 {{ page.date | date(format=widgets::i18n(key="dateFormat")) }}</time>{%- endif -%}
|
|
</div>
|
|
<div class="e-content">{{ page.content | safe }}</div>
|
|
</article>
|
|
{% endblock %}
|