mkdocs-material/src/base.html

382 lines
12 KiB
HTML
Raw Normal View History

2016-08-07 19:01:56 +03:00
<!--
Copyright (c) 2016-2020 Martin Donath <martin.donath@squidfunk.com>
2016-08-07 19:01:56 +03: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.
-->
{% import "partials/language.html" as lang with context %}
2017-01-06 21:18:17 +03:00
<!doctype html>
<html lang="{{ lang.t('language') }}" class="no-js">
2016-01-29 01:27:15 +03:00
<head>
2017-09-01 11:07:29 +03:00
<!-- Metatags -->
{% block site_meta %}
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<!-- Page description -->
{% if page and page.meta and page.meta.description %}
<meta name="description" content="{{ page.meta.description }}" />
{% elif config.site_description %}
<meta name="description" content="{{ config.site_description }}" />
{% endif %}
<!-- Canonical -->
2020-09-27 09:54:36 +03:00
{% if page.canonical_url %}
<link rel="canonical" href="{{ page.canonical_url }}" />
{% endif %}
<!-- Page author -->
{% if page and page.meta and page.meta.author %}
<meta name="author" content="{{ page.meta.author }}" />
{% elif config.site_author %}
<meta name="author" content="{{ config.site_author }}" />
{% endif %}
<!-- Favicon -->
2020-03-17 18:43:49 +03:00
<link rel="shortcut icon" href="{{ config.theme.favicon | url }}" />
<!-- Generator banner -->
<meta
name="generator"
content="mkdocs-{{ mkdocs_version }}, $md-name$-$md-version$"
/>
{% endblock %}
2017-09-01 11:07:29 +03:00
<!-- Site title -->
{% block htmltitle %}
{% if page and page.meta and page.meta.title %}
<title>{{ page.meta.title }} - {{ config.site_name }}</title>
{% elif page and page.title and not page.is_homepage %}
<title>{{ page.title | striptags }} - {{ config.site_name }}</title>
{% else %}
<title>{{ config.site_name }}</title>
{% endif %}
{% endblock %}
2019-11-26 12:36:04 +03:00
<!-- Theme-related stylesheets -->
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.css' | url }}" />
2017-02-10 18:43:32 +03:00
<!-- Extra color palette -->
{% if config.theme.palette %}
{% set palette = config.theme.palette %}
<link
rel="stylesheet"
href="{{ 'assets/stylesheets/palette.css' | url }}"
/>
<!-- Theme-color meta tag for Android -->
{% if palette.primary %}
{% import "partials/palette.html" as map %}
{% set primary = map.primary(
palette.primary | replace(" ", "-") | lower
) %}
<meta name="theme-color" content="{{ primary }}" />
{% endif %}
{% endif %}
{% endblock %}
2017-02-10 18:43:32 +03:00
2017-11-01 20:25:08 +03:00
<!-- JavaScript libraries -->
2019-09-28 21:39:07 +03:00
{% block libs %}{% endblock %}
2017-11-01 20:25:08 +03:00
2017-09-01 11:07:29 +03:00
<!-- Webfonts -->
{% block fonts %}
<!-- Load fonts from Google -->
{% if config.theme.font != false %}
{% set font = config.theme.font %}
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family={{
font.text | replace(' ', '+') + ':300,400,400i,700%7C' +
font.code | replace(' ', '+')
}}&display=fallback"
/>
2017-01-13 02:31:37 +03:00
<style>
body, input {
2020-03-16 18:39:55 +03:00
font-family: "{{ font.text }}",
-apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
2017-01-13 02:31:37 +03:00
}
pre, code, kbd {
2020-03-16 18:39:55 +03:00
font-family: "{{ font.code }}",
SFMono-Regular, Consolas, Menlo, monospace;
2017-01-13 02:31:37 +03:00
}
</style>
{% endif %}
{% endblock %}
<!-- Progressive Web App Manifest -->
{% if config.extra.manifest %}
2019-12-25 17:14:02 +03:00
<link
rel="manifest"
href="{{ config.extra.manifest | url }}"
crossorigin="use-credentials"
/>
{% endif %}
2020-02-25 18:19:43 +03:00
<!-- Custom stylesheets, might contain media query after URL -->
2020-03-05 21:16:25 +03:00
{% for path in config["extra_css"] %}
<link rel="stylesheet" href="{{ path | url }}" />
{% endfor %}
2019-11-26 12:36:04 +03:00
<!-- Analytics -->
{% block analytics %}
{% if config.google_analytics %}
{% include "partials/integrations/analytics.html" %}
{% endif %}
{% endblock %}
2019-01-28 13:18:22 +03:00
2017-09-01 11:07:29 +03:00
<!-- Custom front matter -->
{% block extrahead %}{% endblock %}
2016-01-29 01:27:15 +03:00
</head>
2016-12-17 14:53:24 +03:00
<!-- Text direction and color palette, if defined -->
2020-03-06 12:28:54 +03:00
{% set direction = config.theme.direction or lang.t('direction') %}
{% if config.theme.palette %}
{% set palette = config.theme.palette %}
{% if not palette is mapping %}
{% set palette = palette | first %}
{% endif %}
{% set scheme = palette.scheme | replace(" ", "-") | lower %}
{% set primary = palette.primary | replace(" ", "-") | lower %}
{% set accent = palette.accent | replace(" ", "-") | lower %}
<body
2020-03-05 00:06:05 +03:00
dir="{{ direction }}"
2020-04-25 20:07:23 +03:00
data-md-color-scheme="{{ scheme }}"
data-md-color-primary="{{ primary }}"
data-md-color-accent="{{ accent }}"
>
<!-- Experimental: set color scheme based on preference -->
{% if "preference" == scheme %}
<script>
if (matchMedia("(prefers-color-scheme: dark)").matches)
document.body.setAttribute("data-md-color-scheme", "slate")
</script>
{% endif %}
{% else %}
2020-03-05 00:06:05 +03:00
<body dir="{{ direction }}">
{% endif %}
2016-01-29 01:27:15 +03:00
<!--
State toggles - we need to set autocomplete="off" in order to reset the
drawer on back button invocation in some browsers
-->
<input
class="md-toggle"
data-md-toggle="drawer"
type="checkbox"
id="__drawer"
autocomplete="off"
/>
<input
class="md-toggle"
data-md-toggle="search"
type="checkbox"
id="__search"
autocomplete="off"
/>
2016-01-29 01:27:15 +03:00
<!-- Overlay for expanded drawer -->
2019-12-22 19:30:55 +03:00
<label class="md-overlay" for="__drawer"></label>
2016-01-29 01:27:15 +03:00
2019-11-26 12:36:04 +03:00
<!-- Link to skip to content -->
<div data-md-component="skip">
{% if page.toc | first is defined %}
{% set skip = page.toc | first %}
<a href="{{ skip.url | url }}" class="md-skip">
{{ lang.t('skip.link.title') }}
</a>
{% endif %}
</div>
2020-01-25 16:26:06 +03:00
<!-- Announcement bar -->
<div data-md-component="announce">
{% if self.announce() %}
<aside class="md-announce">
<div class="md-announce__inner md-grid md-typeset">
{% block announce %}{% endblock %}
</div>
</aside>
{% endif %}
</div>
2018-01-18 23:19:10 +03:00
2016-08-07 19:01:56 +03:00
<!-- Application header -->
{% block header %}
{% include "partials/header.html" %}
{% endblock %}
2016-01-29 01:27:15 +03:00
2016-08-07 19:01:56 +03:00
<!-- Container, necessary for web-application context -->
2019-11-22 19:53:12 +03:00
<div class="md-container" data-md-component="container">
2017-11-22 02:13:56 +03:00
<!-- Hero teaser -->
2020-09-27 09:54:36 +03:00
{% block hero %}{% endblock %}
2017-11-22 02:13:56 +03:00
2020-09-27 09:54:36 +03:00
<!-- Tabs navigation -->
2020-02-13 12:10:04 +03:00
{% block tabs %}
{% if "navigation.tabs" in config.theme.features %}
2020-02-13 12:10:04 +03:00
{% include "partials/tabs.html" %}
{% endif %}
{% endblock %}
2019-11-26 12:36:04 +03:00
<!-- Main area -->
<main class="md-main" data-md-component="main">
<div class="md-main__inner md-grid">
2016-01-29 01:27:15 +03:00
2017-09-01 11:07:29 +03:00
<!-- Navigation -->
{% block site_nav %}
<!-- Main navigation -->
{% if nav %}
<div
class="md-sidebar md-sidebar--primary"
data-md-component="navigation"
>
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
{% include "partials/nav.html" %}
</div>
2016-09-23 12:56:25 +03:00
</div>
</div>
{% endif %}
<!-- Table of contents -->
{% if page.toc %}
<div
class="md-sidebar md-sidebar--secondary"
data-md-component="toc"
>
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
{% include "partials/toc.html" %}
</div>
2016-09-23 12:56:25 +03:00
</div>
</div>
{% endif %}
{% endblock %}
2016-01-29 01:27:15 +03:00
2016-08-07 19:01:56 +03:00
<!-- Article -->
2016-09-23 21:26:27 +03:00
<div class="md-content">
<article class="md-content__inner md-typeset">
2017-09-01 11:07:29 +03:00
<!-- Content -->
{% block content %}
<!-- Edit button -->
{% if page.edit_url %}
<a
href="{{ page.edit_url }}"
title="{{ lang.t('edit.link.title') }}"
class="md-content__button md-icon"
>
{% include ".icons/material/pencil.svg" %}
</a>
{% endif %}
2017-03-01 17:43:49 +03:00
<!--
Hack: check whether the content contains a h1 headline. If it
doesn't, the page title (or respectively site name) is used
as the main headline.
-->
{% if not "\x3ch1" in page.content %}
<h1>{{ page.title | default(config.site_name, true)}}</h1>
{% endif %}
<!-- Content -->
{{ page.content }}
2020-03-05 12:13:28 +03:00
<!-- Last update of source file -->
{% if page and page.meta %}
{% if page.meta.git_revision_date_localized or
page.meta.revision_date
%}
{% include "partials/source-date.html" %}
{% endif %}
{% endif %}
{% endblock %}
2017-02-25 00:53:12 +03:00
<!-- Disqus integration -->
{% block disqus %}
{% include "partials/integrations/disqus.html" %}
{% endblock %}
2016-08-07 19:01:56 +03:00
</article>
2016-01-29 01:27:15 +03:00
</div>
</div>
2016-08-07 19:01:56 +03:00
</main>
<!-- Application footer -->
{% block footer %}
{% include "partials/footer.html" %}
{% endblock %}
2016-08-07 19:01:56 +03:00
</div>
2016-01-29 01:27:15 +03:00
2017-09-01 11:07:29 +03:00
<!-- Theme-related JavaScript -->
{% block scripts %}
<script src="{{ 'assets/javascripts/vendor.js' | url }}"></script>
<script src="{{ 'assets/javascripts/bundle.js' | url }}"></script>
2017-06-01 01:40:10 +03:00
<!-- Translations -->
2020-02-20 21:57:02 +03:00
{%- set translations = {} -%}
{%- for key in [
"clipboard.copy",
"clipboard.copied",
"search.config.lang",
"search.config.pipeline",
"search.config.separator",
"search.placeholder",
2020-02-20 21:57:02 +03:00
"search.result.placeholder",
"search.result.none",
"search.result.one",
"search.result.other",
"search.result.more.one",
"search.result.more.other",
"search.result.term.missing"
2020-02-20 21:57:02 +03:00
] -%}
{%- set _ = translations.update({ key: lang.t(key) }) -%}
{%- endfor -%}
<script id="__lang" type="application/json">
2020-03-27 17:29:17 +03:00
{{- translations | tojson -}}
</script>
2019-11-26 12:36:04 +03:00
2020-03-27 18:51:27 +03:00
<!-- Application configuration -->
{% block config %}{% endblock %}
2019-11-26 12:36:04 +03:00
<!-- Application initialization -->
<script>
2020-03-27 17:29:17 +03:00
app = initialize({
base: "{{ base_url }}",
features: {{ config.theme.features or [] | tojson }},
2020-03-27 18:51:27 +03:00
search: Object.assign({
2020-03-27 17:29:17 +03:00
worker: "{{ 'assets/javascripts/worker/search.js' | url }}"
2020-03-27 18:51:27 +03:00
}, typeof search !== "undefined" && search)
2020-03-27 17:29:17 +03:00
})
</script>
2019-11-26 12:36:04 +03:00
<!-- Custom JavaScript -->
{% for path in config["extra_javascript"] %}
2018-08-04 20:53:13 +03:00
<script src="{{ path | url }}"></script>
{% endfor %}
{% endblock %}
2016-01-29 01:27:15 +03:00
</body>
2016-09-23 12:56:25 +03:00
</html>