summaryrefslogtreecommitdiff
path: root/templates/post.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/post.html')
-rw-r--r--templates/post.html19
1 files changed, 12 insertions, 7 deletions
diff --git a/templates/post.html b/templates/post.html
index 8346f16..3155c7a 100644
--- a/templates/post.html
+++ b/templates/post.html
@@ -1,8 +1,13 @@
-<!DOCTYPE html>
-<html>
- <body>
- <article>
+{% extends "base.html" %}
+
+{% block main %}
+<section class="banner">
+ <h1>{{ post.get_title() }}</h1>
+</section>
+
+<section class="quiet">
+ <article>
{{ post.get_article()|markdown }}
- </article>
- </body>
-</html>
+ </article>
+</section>
+{% endblock %}