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