oliverdavies.uk/source/_layouts/post.html.twig

21 lines
483 B
Twig
Raw Normal View History

2017-07-11 01:08:32 +01:00
{% extends 'default' %}
{% block content_wrapper %}
{% include 'post/header' %}
2017-08-06 19:31:59 +01:00
{% include 'post/intro-image' %}
2017-07-11 01:08:32 +01:00
{% block content %}{% endblock %}
{% include 'post/tags' %}
{% include 'post/pager' %}
{% include 'post/about-author' %}
{% endblock %}
2017-08-19 00:28:44 +01:00
{% block stylesheets %}
<link rel="stylesheet" href="{{ site.url }}/assets/css/post.css">
{% endblock %}
2017-08-19 00:38:46 +01:00
{% block scripts %}
<script src="{{ site.url }}/assets/js/post.js"></script>
{% endblock %}