18 lines
433 B
Twig
18 lines
433 B
Twig
{% extends 'default' %}
|
|
|
|
{% block content_wrapper %}
|
|
{% include 'post/header' %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
{# {% include 'post/feedback' %} #}
|
|
{# {% include 'post/related' %} #}
|
|
{% include 'post/tags' %}
|
|
{% include 'post/pager' %}
|
|
{% include 'post/about-author' %}
|
|
{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ site.url }}/assets/css/blog-post.css">
|
|
{% endblock %}
|