14 lines
312 B
Twig
14 lines
312 B
Twig
{% extends 'default' %}
|
|
|
|
{% block content_wrapper %}
|
|
{{ include('post/header') }}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
{{ include('post/feedback') }}
|
|
{{ include('post/related') }}
|
|
{{ include('post/tags') }}
|
|
{{ include('post/about-author') }}
|
|
{{ include('post/pager') }}
|
|
{% endblock %}
|