blob: 8a0257274270e5cc677fe3f81954ca6e483cc919 (
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
|
---
layout: none
---
<!DOCTYPE html>
{%- include snippets/get-lang.html -%}
<html lang="{{ __return }}">
<head>
{%- include analytics.html -%}
{%- include head.html -%}
<script>
{%- include scripts/utils/utils.js -%}
{%- include scripts/lib/throttle.js -%}
{%- include scripts/lib/lazyload.js -%}
</script>
{%- include scripts/variables.html -%}
</head>
<body>
<div class="root" data-is-touch="false">
{{ content }}
</div>
<script>
{%- include scripts/common.js -%}
</script>
</body>
</html>
|