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/default.html.twig

34 lines
999 B
Twig
Raw Normal View History

2019-05-20 17:45:58 +00:00
{% extends 'app' %}
{% block body %}
{% include 'layout/navbar' %}
2019-08-04 19:37:21 +00:00
<div class="mt-10 container">
2019-05-20 17:45:58 +00:00
<main id="main-content" class="flex-1 wrap {{ page.layout == 'front' ? 'is-wide' : '' }}">
2020-03-16 19:26:15 +00:00
{# {% if page.layout in ['post', 'talk'] %}
{% include 'site-message' %}
2020-03-16 19:26:15 +00:00
{% endif %} #}
2019-05-20 17:45:58 +00:00
{% block page_title_wrapper %}
<h1 class="leading-tight mb-4">
{% block page_title %}{{ page.title }}{% endblock %}
</h1>
{% endblock %}
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
</main>
{% include 'layout/footer' %}
</div>
{% endblock %}
2019-07-26 18:34:44 +00:00
{% block scripts %}
{% if page.has_tweets or page.type == 'tweet' %}
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
{% endif %}
<script>hljs.initHighlightingOnLoad();</script>
{% endblock %}