blog/templates/link-page.html
2024-08-18 13:23:10 -03:00

14 lines
334 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 id="post-title">
<a href="{{ page.extra.url }}">{{ page.title }}</a>
</h1>
<p class="post-date"><strong>Linked {{ page.date }}</strong></p>
{% if page.extra.comment %}
<p>{{ page.extra.comment }}</p>
{% endif %}
{{ page.content | safe }}
{% endblock content %}