mkdocs-material/material/base.html

196 lines
8.9 KiB
HTML
Raw Normal View History

{% import "partials/language.html" as lang with context %}
{% set feature = config.theme.feature %}
2017-10-31 19:03:42 +03:00
{% set palette = config.theme.palette %}
2017-10-31 20:21:09 +03:00
{% set font = config.theme.font %}
2016-01-29 01:27:15 +03:00
<!DOCTYPE html>
<html lang="{{ lang.t('language') }}" class="no-js">
2016-01-29 01:27:15 +03:00
<head>
{% block site_meta %}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
{% if page and page.meta.description %}
<meta name="description" content="{{ page.meta.description }}">
{% elif config.site_description %}
<meta name="description" content="{{ config.site_description }}">
{% endif %}
{% if page.canonical_url %}
<link rel="canonical" href="{{ page.canonical_url }}">
{% endif %}
{% if page and page.meta.author %}
<meta name="author" content="{{ page.meta.author | first }}">
{% elif config.site_author %}
<meta name="author" content="{{ config.site_author }}">
{% endif %}
{% for key in [
"clipboard.copy",
"clipboard.copied",
2017-10-31 22:48:41 +03:00
"search.language",
"search.result.none",
"search.result.one",
"search.result.other",
"search.tokenizer"
] %}
<meta name="lang:{{ key }}" content="{{ lang.t(key) }}">
{% endfor %}
<link rel="shortcut icon" href="{{ base_url }}/{{ config.theme.favicon }}">
2017-11-21 23:39:48 +03:00
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-2.1.1">
{% endblock %}
{% block htmltitle %}
{% if page and page.meta.title %}
<title>{{ page.meta.title }}</title>
{% elif page and page.title and not page.is_homepage %}
<title>{{ page.title }} - {{ config.site_name }}</title>
{% else %}
<title>{{ config.site_name }}</title>
{% endif %}
{% endblock %}
2017-02-10 18:43:32 +03:00
{% block styles %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application.1411ec6b.css">
2017-10-31 19:03:42 +03:00
{% if palette.primary or palette.accent %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-palette.d142ea54.css">
2017-02-10 18:43:32 +03:00
{% endif %}
{% endblock %}
2017-11-01 20:25:08 +03:00
{% block libs %}
<script src="{{ base_url }}/assets/javascripts/modernizr.f383bccf.js"></script>
2017-11-01 20:25:08 +03:00
{% endblock %}
2016-12-28 14:11:04 +03:00
{% block fonts %}
2017-10-31 20:21:09 +03:00
{% if font != false %}
<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 02:31:37 +03:00
{% endif %}
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
{% endblock %}
2017-02-10 18:43:32 +03:00
{% for path in extra_css %}
<link rel="stylesheet" href="{{ path }}">
{% endfor %}
2016-12-17 14:53:24 +03:00
{% block extrahead %}{% endblock %}
2016-01-29 01:27:15 +03:00
</head>
2017-10-31 19:03:42 +03:00
{% if palette.primary or palette.accent %}
{% set primary = palette.primary | replace(" ", "-") | lower %}
{% set accent = palette.accent | replace(" ", "-") | lower %}
{% if palette.primary and palette.accent %}
<body data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}">
{% elif palette.primary %}
<body data-md-color-primary="{{ primary }}">
{% elif palette.accent %}
<body data-md-color-accent="{{ accent }}">
{% endif %}
2016-12-17 14:53:24 +03:00
{% else %}
<body>
{% endif %}
2017-01-13 02:31:37 +03: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.a4034fb1.svg" %}
2017-01-13 02:31:37 +03:00
{% elif "gitlab" in platform %}
{% include "assets/images/icons/gitlab.d80e5efc.svg" %}
2017-01-13 02:31:37 +03:00
{% elif "bitbucket" in platform %}
{% include "assets/images/icons/bitbucket.4ebea66e.svg" %}
2017-01-13 02:31:37 +03:00
{% endif %}
</defs>
</svg>
2016-12-15 17:55:40 +03: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 16:47:50 +03:00
<label class="md-overlay" data-md-component="overlay" for="drawer"></label>
{% block header %}
{% include "partials/header.html" %}
{% endblock %}
2016-08-07 19:01:56 +03:00
<div class="md-container">
2017-01-26 23:10:52 +03:00
{% if feature.tabs %}
{% include "partials/tabs.html" %}
{% endif %}
2016-08-07 19:01:56 +03:00
<main class="md-main">
2016-12-26 16:47:50 +03:00
<div class="md-main__inner md-grid" data-md-component="container">
{% block site_nav %}
{% if nav %}
2016-12-26 16:47:50 +03:00
<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 %}
{% if page.toc %}
2016-12-26 16:47:50 +03:00
<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-09-23 21:26:27 +03:00
<div class="md-content">
<article class="md-content__inner md-typeset">
2016-09-23 12:56:25 +03:00
{% block content %}
{% if page.edit_url %}
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-icon md-content__icon">&#xE3C9;</a>
2017-03-01 17:43:49 +03:00
{% endif %}
{% if not "\x3ch1" in page.content %}
<h1>{{ page.title | default(config.site_name, true)}}</h1>
{% endif %}
{{ page.content }}
{% block source %}
{% if page.meta.source %}
<h2 id="__source">{{ lang.t("meta.source") }}</h2>
{% set path = page.meta.path | default([""]) %}
{% set file = page.meta.source %}
<a href="{{ [config.repo_url, path, file] | join('/') }}" title="{{ file }}" class="md-source-file">
{{ file }}
</a>
{% endif %}
{% endblock %}
{% endblock %}
{% block disqus %}
{% if config.extra.disqus and not page.is_homepage %}
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
{% include "partials/disqus.html" %}
{% endif %}
2016-09-23 12:56:25 +03:00
{% 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>
{% block footer %}
2017-01-06 21:18:17 +03:00
{% include "partials/footer.html" %}
{% endblock %}
2016-08-07 19:01:56 +03:00
</div>
{% block scripts %}
<script src="{{ base_url }}/assets/javascripts/application.f0a10a07.js"></script>
2017-10-31 22:48:41 +03:00
{% if lang.t("search.language") != "en" %}
{% set languages = lang.t("search.language").split(",") %}
{% 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" %}
{% if language == "jp" %}
<script src="{{ path }}/tinyseg.js"></script>
{% endif %}
<script src="{{ path }}/lunr.{{ language }}.js"></script>
2017-06-07 13:29:34 +03:00
{% endif %}
2017-10-31 22:48:41 +03:00
{% endfor %}
{% if languages | length > 1 %}
<script src="{{ path }}/lunr.multi.js"></script>
2017-06-01 01:40:10 +03:00
{% endif %}
{% endif %}
{% endif %}
2017-10-22 22:22:25 +03:00
<script>app.initialize({version:"{{ mkdocs_version }}",url:{base:"{{ base_url }}"}})</script>
{% for path in extra_javascript %}
<script src="{{ path }}"></script>
{% endfor %}
{% endblock %}
{% block analytics %}
{% if config.google_analytics %}
<script>!function(e,a,t,n,o,c,i){e.GoogleAnalyticsObject=o,e.ga=e.ga||function(){(e.ga.q=e.ga.q||[]).push(arguments)},e.ga.l=1*new Date,c=a.createElement(t),i=a.getElementsByTagName(t)[0],c.async=1,c.src="https://www.google-analytics.com/analytics.js",i.parentNode.insertBefore(c,i)}(window,document,"script",0,"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 a=e.getAttribute("data-md-action")||"follow";ga("send","event","outbound",a,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 17:55:40 +03:00
{% endif %}
{% endblock %}
2016-01-29 01:27:15 +03:00
</body>
2016-12-29 12:27:25 +03:00
</html>