17 lines
360 B
Twig
17 lines
360 B
Twig
{% extends 'default' %}
|
|
|
|
{% block content_wrapper %}
|
|
{% include 'post/header' %}
|
|
{% include 'post/intro-image' %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
{% include 'post/tags' %}
|
|
{% include 'post/pager' %}
|
|
{% include 'post/about-author' %}
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script>hljs.initHighlightingOnLoad();</script>
|
|
{% endblock %}
|