X-Git-Url: https://jfr.im/git/irc/freenode/web-7.0.git/blobdiff_plain/9c17cae8e0e0c44465ea617237167053679c1ed6..57025cf518231d27dd6b4dd6d02ffddd0f374c29:/templates/article.html diff --git a/templates/article.html b/templates/article.html index 075a085b4..aec02758d 100644 --- a/templates/article.html +++ b/templates/article.html @@ -1,7 +1,14 @@ -
-

{{ Title }}  - {{ Date }} by {{ Author }}

-

{% block Content %}{% endblock %}

- - -
\ No newline at end of file +{% extends "base.html" %} +{% import "artinfo.html" as artinfo with context %} +{% set title=article.title %} +{% block content %} +
+
+ {{ artinfo.info(article) }} +
+
+ {{ article.render() }} +
+ {{ artinfo.nav(article) }} +
+{% endblock content %}