stacken-w3-zola/templates/news-post.html

10 lines
183 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<main>
<h1>{{page.title}}</h1>
<p><strong>{{page.date}}</strong></p>
{{page.content | safe}}
</main>
{% endblock content %}