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

30 lines
885 B
Twig
Raw Normal View History

2019-05-20 17:45:58 +00:00
{% extends 'app' %}
{% block body %}
{% include 'layout/navbar' %}
2019-07-29 07:46:25 +00:00
<div class="container flex flex-col flex-1">
2019-05-20 17:45:58 +00:00
<main id="main-content" class="flex-1 wrap {{ page.layout == 'front' ? 'is-wide' : '' }}">
{% 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 %}