summaryrefslogtreecommitdiff
path: root/templates/blog_post.html
blob: 82850c61df1adae42d83c7042b502733922ebacb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 %}