diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-18 14:14:30 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-18 14:14:30 +0200 |
commit | b944832d593683e54c216d23bb493b302b521e29 (patch) | |
tree | 6c4376d642e8245a6a41e44d4a8e090a481185bb /src/templates/page.html | |
parent | 80e38791f41cf326e43946e306157daa7d7e08e1 (diff) | |
download | theos-website-b944832d593683e54c216d23bb493b302b521e29.tar.xz |
convert root page to reST like ~kyrias/
Diffstat (limited to 'src/templates/page.html')
-rw-r--r-- | src/templates/page.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/templates/page.html b/src/templates/page.html new file mode 100644 index 0000000..3c5d29a --- /dev/null +++ b/src/templates/page.html @@ -0,0 +1,12 @@ +{% extends 'layout.html' %} + +{% block content %} + <article id="{{ page.article_id }}" class="botborder" itemprop="mainContentOfPage"> + + {{ page.body }} + + <p id="last-upd">Last updated <time itemprop="dateModified" datetime="{{ page.date }}">{{ page.date }}</time></p> + <p id="author"><a rel="author" href="{{ page.author_link }}">{{ page.author }}</a></p> + + </article> +{% endblock content %} |