12 lines
239 B
Twig
12 lines
239 B
Twig
|
{% extends 'default' %}
|
||
|
|
||
|
{% block content_wrapper %}
|
||
|
{% include 'post/header' %}
|
||
|
|
||
|
{% block content %}{% endblock %}
|
||
|
|
||
|
{% include 'post/tags' %}
|
||
|
{% include 'post/pager' %}
|
||
|
{% include 'post/about-author' %}
|
||
|
{% endblock %}
|