diff options
Diffstat (limited to 'templates/blog_post.html')
| -rw-r--r-- | templates/blog_post.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/blog_post.html b/templates/blog_post.html new file mode 100644 index 0000000..82850c6 --- /dev/null +++ b/templates/blog_post.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} +{% import "header_macros.html" as header_macros %} +{% import "post_macros.html" as post_macros %} +{% import "pagination_macros.html" as pagination_macros %} + +{% block header %} + {{ header_macros::small_header() }} +{% endblock %} + +{% block content %} +<article class="blog-post single-column"> + <h1> + <a href="{{ page.permalink }}">{{ page.title }}</a> + </h1> + {{ post_macros::meta(post=page) }} + {{ page.content | safe }} + {{ pagination_macros::page_pages() }} +</article> +{% endblock %} |