forked from hacc/haccfiles
stuebinm
41d82ae436
we decided to: - get rid of unused packages - simpify the directory layout since we only have one host anyways - move our docs (such as they are) in-tree
15 lines
396 B
HTML
15 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 %}
|