2017-10-19 20:09:59 +02:00
|
|
|
{% import "partials/language.html" as lang with context %}
|
2017-10-31 18:51:54 +01:00
|
|
|
{% set feature = config.theme.feature %}
|
2017-10-31 17:03:42 +01:00
|
|
|
{% set palette = config.theme.palette %}
|
2017-10-31 18:21:09 +01:00
|
|
|
{% set font = config.theme.font %}
|
2018-12-20 12:14:03 +01:00
|
|
|
<!doctype html>
|
2017-04-22 14:51:41 +02:00
|
|
|
<html lang="{{ lang.t('language') }}" class="no-js">
|
2016-01-28 23:27:15 +01:00
|
|
|
<head>
|
2016-12-15 16:43:40 +01:00
|
|
|
{% block site_meta %}
|
|
|
|
<meta charset="utf-8">
|
2016-12-19 06:44:52 +01:00
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
2017-06-21 10:44:40 +02:00
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
2017-11-22 00:13:56 +01:00
|
|
|
{% if page and page.meta and page.meta.description %}
|
2017-11-01 11:48:44 +01:00
|
|
|
<meta name="description" content="{{ page.meta.description }}">
|
2017-03-11 14:07:07 +01:00
|
|
|
{% elif config.site_description %}
|
2016-12-15 16:43:40 +01:00
|
|
|
<meta name="description" content="{{ config.site_description }}">
|
|
|
|
{% endif %}
|
2018-12-28 15:09:11 +01:00
|
|
|
{% if page and page.meta and page.meta.redirect %}
|
|
|
|
<script>var anchor=window.location.hash.substr(1);location.href="{{ page.meta.redirect }}"+(anchor?"#"+anchor:"")</script>
|
|
|
|
<meta http-equiv="refresh" content="0; url={{ page.meta.redirect }}">
|
|
|
|
<meta name="robots" content="noindex">
|
|
|
|
<link rel="canonical" href="{{ page.meta.redirect }}">
|
|
|
|
{% elif page.canonical_url %}
|
2016-12-15 16:43:40 +01:00
|
|
|
<link rel="canonical" href="{{ page.canonical_url }}">
|
|
|
|
{% endif %}
|
2017-11-22 00:13:56 +01:00
|
|
|
{% if page and page.meta and page.meta.author %}
|
2017-03-11 14:07:07 +01:00
|
|
|
<meta name="author" content="{{ page.meta.author | first }}">
|
|
|
|
{% elif config.site_author %}
|
2016-12-15 16:43:40 +01:00
|
|
|
<meta name="author" content="{{ config.site_author }}">
|
|
|
|
{% endif %}
|
2017-10-18 20:26:00 +02:00
|
|
|
{% for key in [
|
2017-10-18 21:38:33 +02:00
|
|
|
"clipboard.copy",
|
|
|
|
"clipboard.copied",
|
2017-10-31 20:48:41 +01:00
|
|
|
"search.language",
|
2018-02-01 23:47:00 +01:00
|
|
|
"search.pipeline.stopwords",
|
|
|
|
"search.pipeline.trimmer",
|
2017-10-18 21:38:33 +02:00
|
|
|
"search.result.none",
|
|
|
|
"search.result.one",
|
|
|
|
"search.result.other",
|
|
|
|
"search.tokenizer"
|
2017-10-18 20:26:00 +02:00
|
|
|
] %}
|
2017-10-18 21:38:33 +02:00
|
|
|
<meta name="lang:{{ key }}" content="{{ lang.t(key) }}">
|
2017-10-18 20:26:00 +02:00
|
|
|
{% endfor %}
|
2018-08-04 19:53:13 +02:00
|
|
|
<link rel="shortcut icon" href="{{ config.theme.favicon | url }}">
|
2019-03-22 19:23:27 +01:00
|
|
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-4.1.0">
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endblock %}
|
|
|
|
{% block htmltitle %}
|
2017-11-22 00:13:56 +01:00
|
|
|
{% if page and page.meta and page.meta.title %}
|
2017-11-01 11:48:44 +01:00
|
|
|
<title>{{ page.meta.title }}</title>
|
2017-03-11 14:07:07 +01:00
|
|
|
{% elif page and page.title and not page.is_homepage %}
|
2016-12-15 16:43:40 +01:00
|
|
|
<title>{{ page.title }} - {{ config.site_name }}</title>
|
|
|
|
{% else %}
|
|
|
|
<title>{{ config.site_name }}</title>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2017-02-10 16:43:32 +01:00
|
|
|
{% block styles %}
|
2019-02-13 16:14:20 +01:00
|
|
|
<link rel="stylesheet" href="{{ 'assets/stylesheets/application.982221ab.css' | url }}">
|
2017-10-31 17:03:42 +01:00
|
|
|
{% if palette.primary or palette.accent %}
|
2019-02-12 19:13:08 +01:00
|
|
|
<link rel="stylesheet" href="{{ 'assets/stylesheets/application-palette.224b79ff.css' | url }}">
|
2017-02-10 16:43:32 +01:00
|
|
|
{% endif %}
|
2018-06-13 10:18:00 +02:00
|
|
|
{% if palette.primary %}
|
|
|
|
{% import "partials/palette.html" as map %}
|
2018-06-18 10:19:07 +02:00
|
|
|
{% set primary = map.primary(
|
|
|
|
palette.primary | replace(" ", "-") | lower
|
|
|
|
) %}
|
|
|
|
<meta name="theme-color" content="{{ primary }}">
|
2018-06-13 10:18:00 +02:00
|
|
|
{% endif %}
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endblock %}
|
2017-11-01 18:25:08 +01:00
|
|
|
{% block libs %}
|
2019-02-13 15:49:10 +01:00
|
|
|
<script src="{{ 'assets/javascripts/modernizr.1f0bcf2b.js' | url }}"></script>
|
2017-11-01 18:25:08 +01:00
|
|
|
{% endblock %}
|
2016-12-28 12:11:04 +01:00
|
|
|
{% block fonts %}
|
2017-10-31 18:21:09 +01:00
|
|
|
{% if font != false %}
|
2018-09-03 09:42:39 +02:00
|
|
|
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
|
2017-10-31 18:21:09 +01:00
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{
|
|
|
|
font.text | replace(' ', '+') + ':300,400,400i,700|' +
|
|
|
|
font.code | replace(' ', '+')
|
|
|
|
}}">
|
|
|
|
<style>body,input{font-family:"{{ font.text }}","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"{{ font.code }}","Courier New",Courier,monospace}</style>
|
2017-01-13 00:31:37 +01:00
|
|
|
{% endif %}
|
2016-12-27 10:56:13 +01:00
|
|
|
{% endblock %}
|
2018-08-04 19:53:13 +02:00
|
|
|
<link rel="stylesheet" href="{{ 'assets/fonts/material-icons.css' | url }}">
|
2018-11-13 22:24:17 +01:00
|
|
|
{% if config.extra.manifest %}
|
|
|
|
<link rel="manifest" href="{{ config.extra.manifest | url }}">
|
|
|
|
{% endif %}
|
2018-08-07 11:10:19 +02:00
|
|
|
{% for path in config["extra_css"] %}
|
2018-08-04 19:53:13 +02:00
|
|
|
<link rel="stylesheet" href="{{ path | url }}">
|
2017-02-10 16:43:32 +01:00
|
|
|
{% endfor %}
|
2019-01-28 11:18:22 +01:00
|
|
|
{% block analytics %}
|
|
|
|
{% if config.google_analytics %}
|
|
|
|
{% include "partials/integrations/analytics.html" %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2016-12-17 12:53:24 +01:00
|
|
|
{% block extrahead %}{% endblock %}
|
2016-01-28 23:27:15 +01:00
|
|
|
</head>
|
2017-10-31 17:03:42 +01:00
|
|
|
{% if palette.primary or palette.accent %}
|
|
|
|
{% set primary = palette.primary | replace(" ", "-") | lower %}
|
|
|
|
{% set accent = palette.accent | replace(" ", "-") | lower %}
|
2018-02-01 22:57:00 +01:00
|
|
|
<body dir="{{ lang.t('direction') }}" data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}">
|
2016-12-17 12:53:24 +01:00
|
|
|
{% else %}
|
2018-02-01 22:57:00 +01:00
|
|
|
<body dir="{{ lang.t('direction') }}">
|
2016-12-17 12:53:24 +01:00
|
|
|
{% endif %}
|
2017-01-13 00:31:37 +01:00
|
|
|
<svg class="md-svg">
|
|
|
|
<defs>
|
|
|
|
{% set platform = config.extra.repo_icon or config.repo_url %}
|
|
|
|
{% if "github" in platform %}
|
2018-06-10 14:45:16 +02:00
|
|
|
{% include "assets/images/icons/github.f0b8504a.svg" %}
|
2017-01-13 00:31:37 +01:00
|
|
|
{% elif "gitlab" in platform %}
|
2018-06-10 14:45:16 +02:00
|
|
|
{% include "assets/images/icons/gitlab.6dd19c00.svg" %}
|
2017-01-13 00:31:37 +01:00
|
|
|
{% elif "bitbucket" in platform %}
|
2018-06-10 14:45:16 +02:00
|
|
|
{% include "assets/images/icons/bitbucket.1b09e088.svg" %}
|
2017-01-13 00:31:37 +01:00
|
|
|
{% endif %}
|
|
|
|
</defs>
|
|
|
|
</svg>
|
2018-06-10 14:45:16 +02:00
|
|
|
<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">
|
|
|
|
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
|
2018-01-18 21:19:10 +01:00
|
|
|
{% if page.toc | first is defined %}
|
2018-10-23 08:39:55 +02:00
|
|
|
<a href="{{ (page.toc | first).url }}" tabindex="1" class="md-skip">
|
2018-01-18 21:19:10 +01:00
|
|
|
{{ lang.t('skip.link.title') }}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2016-12-19 07:20:09 +01:00
|
|
|
{% block header %}
|
|
|
|
{% include "partials/header.html" %}
|
|
|
|
{% endblock %}
|
2016-08-07 18:01:56 +02:00
|
|
|
<div class="md-container">
|
2017-11-22 00:13:56 +01:00
|
|
|
{% block hero %}
|
|
|
|
{% if page and page.meta and page.meta.hero %}
|
|
|
|
{% include "partials/hero.html" with context %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2017-01-26 21:10:52 +01:00
|
|
|
{% if feature.tabs %}
|
|
|
|
{% include "partials/tabs.html" %}
|
|
|
|
{% endif %}
|
2016-08-07 18:01:56 +02:00
|
|
|
<main class="md-main">
|
2016-12-26 14:47:50 +01:00
|
|
|
<div class="md-main__inner md-grid" data-md-component="container">
|
2016-12-15 16:43:40 +01:00
|
|
|
{% block site_nav %}
|
|
|
|
{% if nav %}
|
2016-12-26 14:47:50 +01:00
|
|
|
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
|
2016-12-15 16:43:40 +01:00
|
|
|
<div class="md-sidebar__scrollwrap">
|
|
|
|
<div class="md-sidebar__inner">
|
|
|
|
{% include "partials/nav.html" %}
|
|
|
|
</div>
|
2016-09-23 11:56:25 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if page.toc %}
|
2016-12-26 14:47:50 +01:00
|
|
|
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
|
2016-12-15 16:43:40 +01:00
|
|
|
<div class="md-sidebar__scrollwrap">
|
|
|
|
<div class="md-sidebar__inner">
|
|
|
|
{% include "partials/toc.html" %}
|
|
|
|
</div>
|
2016-09-23 11:56:25 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2016-09-23 20:26:27 +02:00
|
|
|
<div class="md-content">
|
|
|
|
<article class="md-content__inner md-typeset">
|
2016-09-23 11:56:25 +02:00
|
|
|
{% block content %}
|
2017-11-08 00:19:13 +01:00
|
|
|
{% if page.edit_url %}
|
2017-10-18 21:38:33 +02:00
|
|
|
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-icon md-content__icon"></a>
|
2017-03-01 15:43:49 +01:00
|
|
|
{% endif %}
|
2017-02-08 23:13:13 +01:00
|
|
|
{% if not "\x3ch1" in page.content %}
|
2016-12-15 18:29:46 +01:00
|
|
|
<h1>{{ page.title | default(config.site_name, true)}}</h1>
|
|
|
|
{% endif %}
|
2016-12-15 16:43:40 +01:00
|
|
|
{{ page.content }}
|
2017-03-11 14:07:07 +01:00
|
|
|
{% block source %}
|
2017-11-22 00:13:56 +01:00
|
|
|
{% if page and page.meta and page.meta.source %}
|
2017-10-18 21:38:33 +02:00
|
|
|
<h2 id="__source">{{ lang.t("meta.source") }}</h2>
|
2018-02-11 19:55:36 +01:00
|
|
|
{% set repo = config.repo_url %}
|
|
|
|
{% if repo | last == "/" %}
|
|
|
|
{% set repo = repo[:-1] %}
|
|
|
|
{% endif %}
|
2017-11-01 18:07:15 +01:00
|
|
|
{% set path = page.meta.path | default([""]) %}
|
2017-11-01 15:22:14 +01:00
|
|
|
{% set file = page.meta.source %}
|
2018-02-11 19:55:36 +01:00
|
|
|
<a href="{{ [repo, path, file] | join('/') }}" title="{{ file }}" class="md-source-file">
|
2017-11-01 15:22:14 +01:00
|
|
|
{{ file }}
|
|
|
|
</a>
|
2017-03-11 14:07:07 +01:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block disqus %}
|
2018-03-21 20:05:27 +01:00
|
|
|
{% include "partials/integrations/disqus.html" %}
|
2016-09-23 11:56:25 +02:00
|
|
|
{% endblock %}
|
2016-08-07 18:01:56 +02:00
|
|
|
</article>
|
2016-01-28 23:27:15 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-07 18:01:56 +02:00
|
|
|
</main>
|
2016-12-15 16:43:40 +01:00
|
|
|
{% block footer %}
|
2017-01-06 19:18:17 +01:00
|
|
|
{% include "partials/footer.html" %}
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endblock %}
|
2016-08-07 18:01:56 +02:00
|
|
|
</div>
|
2016-12-15 16:43:40 +01:00
|
|
|
{% block scripts %}
|
2019-03-12 16:51:22 +01:00
|
|
|
<script src="{{ 'assets/javascripts/application.51c3f73e.js' | url }}"></script>
|
2017-10-31 20:48:41 +01:00
|
|
|
{% if lang.t("search.language") != "en" %}
|
|
|
|
{% set languages = lang.t("search.language").split(",") %}
|
|
|
|
{% if languages | length and languages[0] != "" %}
|
2018-08-04 20:35:14 +02:00
|
|
|
{% set path = "assets/javascripts/lunr/" %}
|
2018-08-06 09:41:01 +02:00
|
|
|
<script src="{{ (path ~ 'lunr.stemmer.support.js') | url }}"></script>
|
2017-10-31 20:48:41 +01:00
|
|
|
{% for language in languages | map("trim") %}
|
|
|
|
{% if language != "en" %}
|
2019-03-12 16:33:58 +01:00
|
|
|
{% if language == "ja" %}
|
2018-08-06 09:41:01 +02:00
|
|
|
<script src="{{ (path ~ 'tinyseg.js') | url }}"></script>
|
2017-10-31 20:48:41 +01:00
|
|
|
{% endif %}
|
2019-03-12 16:33:58 +01:00
|
|
|
{% if language in ("da", "de", "es", "fi", "fr", "hu", "it", "ja", "nl", "no", "pt", "ro", "ru", "sv", "th", "tr") %}
|
2018-08-06 09:41:01 +02:00
|
|
|
<script src="{{ (path ~ 'lunr.' ~ language ~ '.js') | url }}"></script>
|
2018-01-21 22:56:54 +01:00
|
|
|
{% endif %}
|
2017-06-07 12:29:34 +02:00
|
|
|
{% endif %}
|
2017-10-31 20:48:41 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% if languages | length > 1 %}
|
2018-08-06 09:41:01 +02:00
|
|
|
<script src="{{ (path ~ 'lunr.multi.js') | url }}"></script>
|
2017-06-01 00:40:10 +02:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2017-10-22 21:22:25 +02:00
|
|
|
<script>app.initialize({version:"{{ mkdocs_version }}",url:{base:"{{ base_url }}"}})</script>
|
2018-08-07 11:10:19 +02:00
|
|
|
{% for path in config["extra_javascript"] %}
|
2018-08-04 19:53:13 +02:00
|
|
|
<script src="{{ path | url }}"></script>
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
2016-01-28 23:27:15 +01:00
|
|
|
</body>
|
2016-12-29 10:27:25 +01:00
|
|
|
</html>
|