forked from hacc/haccfiles
16 lines
396 B
HTML
16 lines
396 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% import "post_macros.html" as post_macros %}
|
||
|
{% block content %}
|
||
|
<main>
|
||
|
<article itemscope itemtype="http://schema.org/CreativeWork">
|
||
|
<header>
|
||
|
<h1><a href="{{ page.permalink | safe }}">
|
||
|
{{ page.title }}
|
||
|
</a></h1>
|
||
|
</header>
|
||
|
{{ page.content | safe }}
|
||
|
</article>
|
||
|
</main>
|
||
|
{% endblock content %}
|