Standardise on include format

This commit is contained in:
Oliver Davies 2016-09-29 12:43:17 +01:00
parent c5e5ae90d5
commit 188a8d044f
7 changed files with 24 additions and 23 deletions

View file

@ -1,13 +1,13 @@
{% extends 'default' %}
{% block content_wrapper %}
{{ include('post/header') }}
{% include 'post/header' %}
{% block content %}{% endblock %}
{{ include('post/feedback') }}
{{ include('post/related') }}
{{ include('post/tags') }}
{{ include('post/about-author') }}
{{ include('post/pager') }}
{% include 'post/feedback' %}
{% include 'post/related' %}
{% include 'post/tags' %}
{% include 'post/about-author' %}
{% include 'post/pager' %}
{% endblock %}