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

{{ 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 %}