-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathmain.html
More file actions
38 lines (33 loc) · 1.61 KB
/
Copy pathmain.html
File metadata and controls
38 lines (33 loc) · 1.61 KB
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
{% extends "base.html" %}
{% block fonts %}
<style>:root{--md-text-font:"Inter";--md-code-font:"Roboto Mono"}</style>
<link rel="preload" href="{{ 'assets/fonts/inter-latin.woff2' | url }}" as="font" type="font/woff2" crossorigin>
{% endblock %}
{% block site_meta %}
{{ super() }}
{% if page and page.meta and page.meta.git_revision_date_localized_raw_iso_datetime %}
<meta http-equiv="last-modified" content="{{ page.meta.git_revision_date_localized_raw_iso_datetime }}">
{% endif %}
{% if config.extra.self_hosted %}<meta name="robots" content="noindex">{% endif %}
{% endblock %}
{% block analytics %}
{{ super() }}
{% if config.extra.segment_key %}{% include "partials/integrations/segment.html" %}{% endif %}
{% endblock %}
{% block content %}
{% include "partials/notices.html" %}
{% if page and page.meta and page.meta.source %}{% include "partials/source-link.html" %}{% endif %}
{% include "partials/content.html" %}
{% include "partials/integrations/disqus.html" %}
{% include "partials/integrations/feedback.html" %}
{% if page.previous_page or page.next_page %}
<nav class="docs-page-nav" aria-label="Page navigation">
{% if page.previous_page %}<a href="{{ page.previous_page.url | url }}"><span>Previous</span><strong>{{ page.previous_page.title }}</strong></a>{% endif %}
{% if page.next_page %}<a href="{{ page.next_page.url | url }}" class="docs-page-nav__next"><span>Next</span><strong>{{ page.next_page.title }}</strong></a>{% endif %}
</nav>
{% endif %}
{% endblock %}
{% block config %}
{{ super() }}
{% include "partials/integrations/zendesk.html" %}
{% endblock %}