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

38 lines
1.1 KiB
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
2018-12-29 02:13:05 +00:00
{% block metaTags %}
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@{{ site.twitter.name }}">
<meta name="twitter:title" content="{{ page.title }}">
<meta name="twitter:creator" content="@{{ site.twitter.name }}">
2018-12-31 12:13:05 +00:00
<meta name="twitter:image" content="{{ site.url ~ site.avatar.url }}">
<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
2018-05-28 23:33:00 +00:00
<div class="markdown 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 %}