mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
182 lines
7.0 KiB
HTML
182 lines
7.0 KiB
HTML
<!DOCTYPE html>
|
|
<html class="no-js">
|
|
<head>
|
|
{% block site_meta %}
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
{% if config.site_description %}
|
|
<meta name="description" content="{{ config.site_description }}">
|
|
{% endif %}
|
|
{% if page.canonical_url %}
|
|
<link rel="canonical" href="{{ page.canonical_url }}">
|
|
{% endif %}
|
|
{% if config.site_author %}
|
|
<meta name="author" content="{{ config.site_author }}">
|
|
{% endif %}
|
|
{% if config.site_favicon %}
|
|
<link rel="shortcut icon" href="{{ base_url }}/{{ config.site_favicon }}">
|
|
{% else %}
|
|
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.ico">
|
|
{% endif %}
|
|
<meta name="generator" content="mkdocs+mkdocs-material#1.0.0">
|
|
{% endblock %}
|
|
{% block htmltitle %}
|
|
{% if page.title %}
|
|
<title>{{ page.title }} - {{ config.site_name }}</title>
|
|
{% elif config.site_description %}
|
|
<title>{{ config.site_name }} - {{ config.site_description }}</title>
|
|
{% else %}
|
|
<title>{{ config.site_name }}</title>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block libs %}
|
|
<script src="{{ base_url }}/assets/javascripts/modernizr-934476c231.js"></script>
|
|
{% endblock %}
|
|
{% block styles %}
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono:400">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-ca351710b4.css">
|
|
{% if config.extra.palette %}
|
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-535e87ca3f.palette.css">
|
|
{% endif %}
|
|
{% for path in extra_css %}
|
|
<link rel="stylesheet" href="{{ path }}">
|
|
{% endfor %}
|
|
{% endblock %}
|
|
{% block extrahead %}{% endblock %}
|
|
</head>
|
|
{% set palette = config.extra.get("palette", {}) %}
|
|
{% set primary = palette.primary | replace(" ", "-") | lower %}
|
|
{% set accent = palette.accent | replace(" ", "-") | lower %}
|
|
{% if primary or accent %}
|
|
<body data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}">
|
|
{% else %}
|
|
<body>
|
|
{% endif %}
|
|
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="drawer">
|
|
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="search">
|
|
<label class="md-overlay" data-md-component="overlay" for="drawer"></label>
|
|
{% block header %}
|
|
{% include "partials/header.html" %}
|
|
{% endblock %}
|
|
<div class="md-container">
|
|
<main class="md-main">
|
|
<div class="md-main__inner md-grid" data-md-component="container">
|
|
{% block site_nav %}
|
|
{% 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>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% 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>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
<div class="md-content">
|
|
<article class="md-content__inner md-typeset">
|
|
{% block content %}
|
|
{% if not "\x3ch1 id=" in page.content %}
|
|
<h1>{{ page.title | default(config.site_name, true)}}</h1>
|
|
{% endif %}
|
|
{{ page.content }}
|
|
{% endblock %}
|
|
<hr>
|
|
<small class="md-content__copyright">
|
|
{% if config.copyright %}
|
|
{{ config.copyright }} –
|
|
{% endif %}
|
|
This document was created with
|
|
<a href="http://www.mkdocs.org">MkDocs</a>
|
|
and the
|
|
<a href="http://squidfunk.github.io/mkdocs-material/">
|
|
Material
|
|
</a>
|
|
theme.
|
|
{% if config.edit_uri %}
|
|
<a href="{{ page.edit_url }}">
|
|
Edit this page
|
|
</a>
|
|
{% endif %}
|
|
</small>
|
|
</article>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{% block footer %}
|
|
{% include "partials/footer.html" %}
|
|
{% endblock %}
|
|
</div>
|
|
{% block scripts %}
|
|
{% for extension in config.markdown_extensions %}
|
|
{% if extension == "pymdownx.arithmatex" %}
|
|
{% set path = "mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML" %}
|
|
<script src="https://cdn.mathjax.org/{{ path }}"></script>
|
|
{% endif %}
|
|
{% endfor %}
|
|
<script src="{{ base_url }}/assets/javascripts/application-0df6fd955b.js"></script>
|
|
<script>
|
|
/* Configuration for application */
|
|
var config = {
|
|
url: {
|
|
base: "{{ base_url }}",
|
|
}
|
|
};
|
|
/* Initialize application */
|
|
var app = new Application(config);
|
|
app.initialize();
|
|
</script>
|
|
{% for path in extra_javascript %}
|
|
<script src="{{ path }}"></script>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
{% block analytics %}
|
|
{% if config.google_analytics %}
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){
|
|
i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){(i[r].q=i[r].q||
|
|
[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;
|
|
m.parentNode.insertBefore(a,m)
|
|
})(window, document,
|
|
"script", "https://www.google-analytics.com/analytics.js", "ga");
|
|
/* General initialization */
|
|
ga("create",
|
|
"{{ config.google_analytics[0] }}",
|
|
"{{ config.google_analytics[1] }}");
|
|
ga("set", "anonymizeIp", true);
|
|
ga("send", "pageview");
|
|
/* Track outbound links */
|
|
var links = document.getElementsByTagName("a");
|
|
Array.prototype.map.call(links, function(item) {
|
|
if (item.host != document.location.host) {
|
|
item.addEventListener("click", function() {
|
|
var action = item.getAttribute("data-action") || "follow";
|
|
ga("send", "event", "outbound", action, item.href);
|
|
});
|
|
}
|
|
});
|
|
/* Register handler to log search on blur */
|
|
var query = document.forms.search.query;
|
|
query.addEventListener("blur", function() {
|
|
if (this.value) {
|
|
var path = document.location.pathname;
|
|
ga("send", "pageview", path + "?q=" + this.value);
|
|
}
|
|
});
|
|
</script>
|
|
{% endif %}
|
|
{% endblock %}
|
|
</body>
|
|
</body></html>
|