summaryrefslogtreecommitdiff
path: root/alabaster-lite/main.html
blob: e5605c97c09c822593e1dbfbd95ec32dd82465c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{% from "config.html" import theme with context %}
<!DOCTYPE html>
<html>
<head>
  {% block head %}
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <title>{% if page.title %}{{ page.title }} &mdash; {% endif %}{{ config.site_name }}</title>

    <link rel="stylesheet" href="{{ base_url }}/css/alabaster.css" type="text/css">

    {% for path in extra_css %}
      <link href="{{ path }}" rel="stylesheet">
    {% endfor %}

    <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">

    {% block extrahead %}{% endblock %}
  {% endblock %}
</head>
<body>

  <div class="document">
    <div class="documentwrapper">
      <div class="bodywrapper">
        <div class="body" role="main">
          {% block content %}
            {{ page.content }}
            {% if page.is_homepage and theme.homepage_nav %}
              {% include "inc/homepage_nav.html" %}
            {% endif %}
          {% endblock %}
        </div>
      </div>
    </div>
    <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
      <div class="sphinxsidebarwrapper">
        {% if page.is_homepage %}
          {% for sidebar in theme.homepage_sidebars %}
            {% include "sidebars/%s.html" % sidebar %}
          {% endfor %}
        {% else %}
          {% for sidebar in theme.sidebars %}
            {% include "sidebars/%s.html" % sidebar %}
          {% endfor %}
        {% endif %}
      </div>
    </div>
    <div class="clearer"></div>
  </div>

  {% block footer %}
    <div class="footer">
        <a rel="license" href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 (public domain)</a> | feedback &gt;&gt; fkfd@fkfd.me
    </div>
  {% endblock %}

  <!--
  MkDocs version      : {{ mkdocs_version }}
  Docs Build Date UTC : {{ build_date_utc }}
  -->
</body>
</html>