2016-01-28 23:27:15 +01:00
|
|
|
<!DOCTYPE html>
|
2016-09-08 19:43:23 +02:00
|
|
|
<html class="no-js">
|
2016-01-28 23:27:15 +01:00
|
|
|
<head>
|
2016-02-04 15:03:20 +01:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
|
2016-09-08 19:43:23 +02:00
|
|
|
{% if page_title %}
|
|
|
|
<title>{{ page_title }} - {{ site_name }}</title>
|
|
|
|
{% elif page_description %}
|
|
|
|
<title>{{ site_name }} - {{ page_description }}</title>
|
|
|
|
{% else %}
|
|
|
|
<title>{{ site_name }}</title>
|
|
|
|
{% endif %}
|
|
|
|
{% if page_description %}
|
|
|
|
<meta name="description" content="{{ page_description }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if canonical_url %}
|
|
|
|
<link rel="canonical" href="{{ canonical_url }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if site_author %}
|
|
|
|
<meta name="author" content="{{ site_author }}">
|
|
|
|
{% endif %}
|
|
|
|
<meta name="generator" content="mkdocs+mkdocs-material#0.2.1">
|
2016-09-23 11:56:25 +02:00
|
|
|
<script src="{{ base_url }}/assets/javascripts/modernizr-d3fe1698b6.js"></script>
|
2016-09-08 19:43:23 +02:00
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700">
|
2016-09-23 11:56:25 +02:00
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono:400">
|
2016-09-02 00:33:45 +02:00
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
2016-09-23 11:56:25 +02:00
|
|
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-cbcef7edd5.css">
|
2016-01-28 23:27:15 +01:00
|
|
|
{% for path in extra_css %}
|
2016-02-04 15:03:20 +01:00
|
|
|
<link rel="stylesheet" href="{{ path }}">
|
2016-01-28 23:27:15 +01:00
|
|
|
{% endfor %}
|
|
|
|
</head>
|
2016-08-07 18:01:56 +02:00
|
|
|
<body>
|
2016-09-04 17:11:58 +02:00
|
|
|
<input class="md-toggle md-toggle--drawer" type="checkbox" id="drawer">
|
|
|
|
<input class="md-toggle md-toggle--search" type="checkbox" id="search">
|
|
|
|
<label class="md-overlay" for="drawer"></label>
|
2016-09-23 11:56:25 +02:00
|
|
|
{% include "partials/header.html" %}
|
2016-08-07 18:01:56 +02:00
|
|
|
<div class="md-container">
|
|
|
|
<main class="md-main">
|
2016-09-11 19:00:53 +02:00
|
|
|
<div class="md-main__inner md-grid">
|
2016-08-07 18:01:56 +02:00
|
|
|
{% set h1 = "\x3ch1 id=" in content %}
|
|
|
|
{% if nav %}
|
2016-09-23 11:56:25 +02:00
|
|
|
<div class="md-sidebar md-sidebar--primary md-js__sidebar">
|
|
|
|
<div class="md-sidebar__scrollwrap">
|
|
|
|
<div class="md-sidebar__inner">
|
|
|
|
{% include "partials/nav.html" %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-01-28 23:27:15 +01:00
|
|
|
{% endif %}
|
2016-08-07 18:01:56 +02:00
|
|
|
{% if toc %}
|
2016-09-23 11:56:25 +02:00
|
|
|
<div class="md-sidebar md-sidebar--secondary md-js__sidebar">
|
|
|
|
<div class="md-sidebar__scrollwrap">
|
|
|
|
<div class="md-sidebar__inner">
|
|
|
|
{% include "partials/toc.html" %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-07 18:01:56 +02:00
|
|
|
{% endif %}
|
|
|
|
<div class="md-content md-content--typeset">
|
|
|
|
<article class="md-content__inner">
|
2016-09-23 11:56:25 +02:00
|
|
|
{% block content %}
|
|
|
|
{% if edit_uri %}
|
|
|
|
<a class="md-button md-button--edit" href="{{ edit_uri }}">
|
|
|
|
Edit
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
|
|
{% endblock %}
|
2016-08-07 18:01:56 +02:00
|
|
|
<hr>
|
|
|
|
<small class="md-content__copyright">
|
|
|
|
{% if copyright %}
|
|
|
|
{{ copyright }} –
|
|
|
|
{% endif %}
|
|
|
|
This document was created with
|
2016-09-02 22:59:14 +02:00
|
|
|
<a href="http://www.mkdocs.org">
|
|
|
|
MkDocs
|
|
|
|
</a>
|
2016-08-07 18:01:56 +02:00
|
|
|
and the
|
2016-09-02 22:59:14 +02:00
|
|
|
<a href="http://squidfunk.github.io/mkdocs-material/">
|
|
|
|
Material
|
|
|
|
</a>
|
2016-08-07 18:01:56 +02:00
|
|
|
theme.
|
|
|
|
</small>
|
|
|
|
</article>
|
2016-01-28 23:27:15 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-07 18:01:56 +02:00
|
|
|
</main>
|
2016-09-23 11:56:25 +02:00
|
|
|
{% include "partials/footer.html" %}
|
2016-08-07 18:01:56 +02:00
|
|
|
</div>
|
2016-01-28 23:27:15 +01:00
|
|
|
<script>
|
|
|
|
var base_url = '{{ base_url }}';
|
2016-08-07 18:01:56 +02:00
|
|
|
var repo_url = '{{ repo_url }}';
|
2016-01-28 23:27:15 +01:00
|
|
|
</script>
|
2016-09-23 12:39:47 +02:00
|
|
|
<script src="{{ base_url }}/assets/javascripts/application-409da39d08.js"></script>
|
2016-01-28 23:27:15 +01:00
|
|
|
{% for path in extra_javascript %}
|
|
|
|
<script src="{{ path }}"></script>
|
|
|
|
{% endfor %}
|
|
|
|
</body>
|
2016-09-23 11:56:25 +02:00
|
|
|
</html>
|