blob: 34f029b96c3fe40c8f7493657d2be1040d99e13d (
plain) (
blame)
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
|
{% import 'macros.html' as macros %}
<!DOCTYPE html>
<html lang="{{ lang }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="An open-source distributed storage service you can self-host to fullfill many needs.">
<meta name="application-name" content="{{ config.title }}">
{% include "partials/shared/head.html" %}
</head>
<body class="has-background-white">
{% include "partials/shared/nav.html" %}
{% block content %}{% endblock %}
{% block search %}
{% include "partials/shared/search.html" %}
{% endblock %}
{% block pagination %}
{% include "partials/shared/paginator.html" %}
{% endblock %}
{% block comment %}{% endblock %}
{% include "partials/shared/footer.html" %}
<script src="{{ get_url(path='elasticlunr.min.js') }}"></script>
{%- if lang != "en" -%}
{%- block other_lang_search_js -%}{%- endblock -%}
{%- endif -%}
<script src="{{ get_url(path='js/site.js') }}"></script>
{% block custom_js %}{% endblock %}
{% block user_custom_js %}{% endblock %}
</body>
</html>
|