2017-01-13 00:31:37 +01:00
|
|
|
{% import "partials/language.html" as lang %}
|
2016-01-28 23:27:15 +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-03-11 14:07:07 +01:00
|
|
|
{% if page and page.meta.description %}
|
|
|
|
<meta name="description" content="{{ page.meta.description | first }}">
|
|
|
|
{% elif config.site_description %}
|
2016-12-15 16:43:40 +01:00
|
|
|
<meta name="description" content="{{ config.site_description }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if page.canonical_url %}
|
|
|
|
<link rel="canonical" href="{{ page.canonical_url }}">
|
|
|
|
{% endif %}
|
2017-03-11 14:07:07 +01:00
|
|
|
{% if page and page.meta.author %}
|
|
|
|
<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 %}
|
|
|
|
{% if config.site_favicon %}
|
|
|
|
<link rel="shortcut icon" href="{{ base_url }}/{{ config.site_favicon }}">
|
|
|
|
{% else %}
|
2017-01-28 17:56:34 +01:00
|
|
|
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png">
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endif %}
|
2017-06-07 12:49:22 +02:00
|
|
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.7.3">
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endblock %}
|
|
|
|
{% block htmltitle %}
|
2017-03-11 14:07:07 +01:00
|
|
|
{% if page and page.meta.title %}
|
|
|
|
<title>{{ page.meta.title | first }}</title>
|
|
|
|
{% 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 %}
|
|
|
|
{% block libs %}
|
2017-05-24 16:11:54 +02:00
|
|
|
<script src="{{ base_url }}/assets/javascripts/modernizr-1df76c4e58.js"></script>
|
2017-02-10 16:43:32 +01:00
|
|
|
{% endblock %}
|
|
|
|
{% block styles %}
|
2017-06-14 14:51:31 +02:00
|
|
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-769c285a91.css">
|
2017-02-10 16:43:32 +01:00
|
|
|
{% if config.extra.palette %}
|
2017-06-14 14:51:31 +02:00
|
|
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-02c2a4388f.palette.css">
|
2017-02-10 16:43:32 +01:00
|
|
|
{% endif %}
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endblock %}
|
2016-12-28 12:11:04 +01:00
|
|
|
{% block fonts %}
|
2017-03-11 18:36:56 +01:00
|
|
|
{% if config.extra.font != false and config.extra.font != "none" %}
|
2017-01-13 00:31:37 +01:00
|
|
|
{% set text = config.extra.get("font", {}).text | default("Roboto") %}
|
|
|
|
{% set code = config.extra.get("font", {}).code
|
|
|
|
| default("Roboto Mono") %}
|
2017-06-01 22:17:08 +02:00
|
|
|
{% set font = text + ":300,400,400i,700|" + code | replace(" ", "+") %}
|
2017-01-13 00:31:37 +01:00
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{ font }}">
|
|
|
|
<style>body,input{font-family:"{{ text }}","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"{{ code }}","Courier New",Courier,monospace}</style>
|
|
|
|
{% endif %}
|
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
2016-12-27 10:56:13 +01:00
|
|
|
{% endblock %}
|
2017-02-10 16:43:32 +01:00
|
|
|
{% for path in extra_css %}
|
|
|
|
<link rel="stylesheet" href="{{ path }}">
|
|
|
|
{% endfor %}
|
2016-12-17 12:53:24 +01:00
|
|
|
{% block extrahead %}{% endblock %}
|
2016-01-28 23:27:15 +01:00
|
|
|
</head>
|
2016-12-17 12:53:24 +01:00
|
|
|
{% set palette = config.extra.get("palette", {}) %}
|
|
|
|
{% set primary = palette.primary | replace(" ", "-") | lower %}
|
|
|
|
{% set accent = palette.accent | replace(" ", "-") | lower %}
|
|
|
|
{% if primary or accent %}
|
2016-12-18 13:29:03 +01:00
|
|
|
<body data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}">
|
2016-12-17 12:53:24 +01:00
|
|
|
{% else %}
|
|
|
|
<body>
|
|
|
|
{% 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 %}
|
|
|
|
{% include "assets/images/icons/github-1da075986e.svg" %}
|
|
|
|
{% elif "gitlab" in platform %}
|
|
|
|
{% include "assets/images/icons/gitlab-5ad3f9f9e5.svg" %}
|
|
|
|
{% elif "bitbucket" in platform %}
|
|
|
|
{% include "assets/images/icons/bitbucket-670608a71a.svg" %}
|
|
|
|
{% endif %}
|
|
|
|
</defs>
|
|
|
|
</svg>
|
2016-12-15 15:55:40 +01:00
|
|
|
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="drawer">
|
|
|
|
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="search">
|
2016-12-26 14:47:50 +01:00
|
|
|
<label class="md-overlay" data-md-component="overlay" for="drawer"></label>
|
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-01-26 21:10:52 +01:00
|
|
|
{% set feature = config.extra.get("feature", {}) %}
|
|
|
|
{% 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-03-01 15:43:49 +01:00
|
|
|
{% if config.edit_uri %}
|
|
|
|
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-icon md-content__icon">edit</a>
|
|
|
|
{% 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 %}
|
|
|
|
{% if page.meta.source %}
|
2017-06-01 22:17:08 +02:00
|
|
|
<h2 id="__source">{{ lang.t("meta.source") }}</h2>
|
2017-03-11 14:07:07 +01:00
|
|
|
{% set path = (page.meta.path | default([""]) | first) %}
|
2017-02-26 22:09:51 +01:00
|
|
|
{% for file in page.meta.source %}
|
2017-04-22 14:31:29 +02:00
|
|
|
<a href="{{ [config.repo_url, path, file] | join('/') }}" title="{{ file }}" class="md-source-file">
|
2017-03-11 14:07:07 +01:00
|
|
|
{{ file }}
|
|
|
|
</a>
|
2017-02-26 22:09:51 +01:00
|
|
|
{% endfor %}
|
2017-03-11 14:07:07 +01:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block disqus %}
|
|
|
|
{% if config.extra.disqus and not page.is_homepage %}
|
2017-06-01 22:17:08 +02:00
|
|
|
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
|
2017-03-11 14:07:07 +01:00
|
|
|
{% include "partials/disqus.html" %}
|
2017-02-26 22:09:51 +01:00
|
|
|
{% endif %}
|
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 %}
|
2017-06-13 14:52:21 +02:00
|
|
|
<script src="{{ base_url }}/assets/javascripts/application-61a35f0764.js"></script>
|
2017-06-01 22:17:08 +02:00
|
|
|
{% set languages = lang.t("search.languages").split(",") %}
|
2017-06-01 00:40:10 +02:00
|
|
|
{% if languages | length and languages[0] != "" %}
|
|
|
|
{% set path = base_url + "/assets/javascripts/lunr" %}
|
|
|
|
<script src="{{ path }}/lunr.stemmer.support.js"></script>
|
|
|
|
{% for language in languages | map("trim") %}
|
|
|
|
{% if language != "en" %}
|
2017-06-07 12:29:34 +02:00
|
|
|
{% if language == "jp" %}
|
|
|
|
<script src="{{ path }}/tinyseg.js"></script>
|
|
|
|
{% endif %}
|
2017-06-01 00:40:10 +02:00
|
|
|
<script src="{{ path }}/lunr.{{ language }}.js"></script>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% if languages | length > 1 %}
|
|
|
|
<script src="{{ path }}/lunr.multi.js"></script>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2017-02-11 16:00:45 +01:00
|
|
|
<script>app.initialize({url:{base:"{{ base_url }}"}})</script>
|
2016-12-15 16:43:40 +01:00
|
|
|
{% for path in extra_javascript %}
|
|
|
|
<script src="{{ path }}"></script>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block analytics %}
|
|
|
|
{% if config.google_analytics %}
|
2016-12-29 10:27:25 +01:00
|
|
|
<script>!function(e,t,a,n,o,c,i){e.GoogleAnalyticsObject=o,e[o]=e[o]||function(){(e[o].q=e[o].q||[]).push(arguments)},e[o].l=1*new Date,c=t.createElement(a),i=t.getElementsByTagName(a)[0],c.async=1,c.src=n,i.parentNode.insertBefore(c,i)}(window,document,"script","https://www.google-analytics.com/analytics.js","ga"),ga("create","{{ config.google_analytics[0] }}","{{ config.google_analytics[1] }}"),ga("set","anonymizeIp",!0),ga("send","pageview");var links=document.getElementsByTagName("a");Array.prototype.map.call(links,function(e){e.host!=document.location.host&&e.addEventListener("click",function(){var t=e.getAttribute("data-md-action")||"follow";ga("send","event","outbound",t,e.href)})});var query=document.forms.search.query;query.addEventListener("blur",function(){if(this.value){var e=document.location.pathname;ga("send","pageview",e+"?q="+this.value)}})</script>
|
2016-12-15 15:55:40 +01:00
|
|
|
{% endif %}
|
2016-12-15 16:43:40 +01:00
|
|
|
{% endblock %}
|
2016-01-28 23:27:15 +01:00
|
|
|
</body>
|
2016-12-29 10:27:25 +01:00
|
|
|
</html>
|