This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_layouts/post.html.twig

35 lines
884 B
Twig
Raw Normal View History

2019-01-05 00:08:45 +00:00
{% extends 'default' %}
2017-07-11 00:08:32 +00:00
2019-01-05 00:08:45 +00:00
{% block page_title_wrapper %}{% endblock %}
2018-10-20 23:11:06 +00:00
2019-03-04 20:09:48 +00:00
{% block metas %}
2019-03-04 20:57:04 +00:00
{{ parent() }}
<meta name="og:description" content="{{ page.excerpt }}">
<meta name="twitter:description" content="{{ page.excerpt }}">
2018-12-29 02:13:05 +00:00
{% endblock %}
2017-07-11 00:08:32 +00:00
{% block content_wrapper %}
{% include 'post/header' %}
2017-08-06 18:31:59 +00:00
{% include 'post/intro-image' %}
2017-07-11 00:08:32 +00:00
2019-02-12 23:17:28 +00:00
<div class="markup post mb-6">
2018-06-20 22:06:09 +00:00
{% include 'post/old-post-message' %}
2018-02-27 21:18:35 +00:00
{% block content %}{% endblock %}
</div>
2017-07-11 00:08:32 +00:00
2019-01-04 12:44:50 +00:00
<div class="mb-6">
{% include 'post/questions-comments' %}
{% include 'post/tags' %}
</div>
2017-07-11 00:08:32 +00:00
{% include 'post/about-author' %}
{% endblock %}
2017-11-01 21:06:56 +00:00
{% block scripts %}
2018-12-29 02:13:05 +00:00
{% if page.has_tweets %}
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
{% endif %}
2017-11-09 22:44:30 +00:00
<script>hljs.initHighlightingOnLoad();</script>
2017-11-01 21:06:56 +00:00
{% endblock %}