2020-03-26 11:19:20 +01:00
|
|
|
<!--
|
2022-01-10 09:59:00 +01:00
|
|
|
Copyright (c) 2016-2022 Martin Donath <martin.donath@squidfunk.com>
|
2020-03-26 11:19:20 +01:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to
|
|
|
|
deal in the Software without restriction, including without limitation the
|
|
|
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
IN THE SOFTWARE.
|
|
|
|
-->
|
|
|
|
|
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2020-03-26 15:23:22 +01:00
|
|
|
<!-- Custom front matter -->
|
|
|
|
{% block extrahead %}
|
|
|
|
|
2021-10-10 22:32:32 +02:00
|
|
|
<!-- Extra style sheets (can't be set in mkdocs.yml due to content hash) -->
|
2020-07-19 22:23:26 +02:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
2021-02-06 09:35:03 +01:00
|
|
|
href="{{ 'overrides/assets/stylesheets/main.css' | url }}"
|
2020-07-19 22:23:26 +02:00
|
|
|
/>
|
2020-03-26 15:23:22 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
2020-03-26 11:19:20 +01:00
|
|
|
<!-- Announcement bar -->
|
|
|
|
{% block announce %}
|
2020-06-20 12:24:35 +02:00
|
|
|
<a href="https://twitter.com/squidfunk">
|
|
|
|
For updates follow <strong>@squidfunk</strong> on
|
|
|
|
<span class="twemoji twitter">
|
2020-07-23 09:29:23 +02:00
|
|
|
{% include ".icons/fontawesome/brands/twitter.svg" %}
|
2020-04-25 15:56:00 +02:00
|
|
|
</span>
|
2020-06-20 12:24:35 +02:00
|
|
|
<strong>Twitter</strong>
|
2020-04-05 14:09:20 +02:00
|
|
|
</a>
|
2020-03-26 11:19:20 +01:00
|
|
|
{% endblock %}
|
2020-07-22 16:05:38 +02:00
|
|
|
|
2022-04-07 19:18:50 +02:00
|
|
|
<!-- Content -->
|
|
|
|
{% block content %}
|
|
|
|
{% include "overrides/partials/content.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2021-02-06 09:57:40 +01:00
|
|
|
<!-- Theme-related JavaScript -->
|
|
|
|
{% block scripts %}
|
2020-07-23 10:23:32 +02:00
|
|
|
{{ super() }}
|
|
|
|
|
2021-07-24 17:58:48 +02:00
|
|
|
<!-- Extra JavaScript (can't be set in mkdocs.yml due to content hash) -->
|
2021-02-06 09:57:40 +01:00
|
|
|
<script src="{{ 'overrides/assets/javascripts/bundle.js' | url }}"></script>
|
2020-07-23 10:23:32 +02:00
|
|
|
{% endblock %}
|