forked from dry-python/dry-python.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.html
More file actions
30 lines (30 loc) · 935 Bytes
/
layout.html
File metadata and controls
30 lines (30 loc) · 935 Bytes
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
{% from 'components/navbar.html' import navbar %}
{% from 'components/copyright.html' import copyright %}
{% from 'components/bundle.html' import bundle %}
{% from 'components/gitter_sidecar.html' import gitter_sidecar %}
{% from 'components/analytics.html' import analytics %}
<!doctype html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ bundle() }}
<title>{% block title %}Welcome{% endblock %} | dry-python.org</title>
</head>
<body>
<div class="header-container">
<header class="container header">
{{ navbar() }}
{% block header %}{% endblock header %}
</header>
</div>
<div class="container mx-auto text py-4">
{% block body %}
{% endblock %}
</div>
<footer class="container footer">
{{ copyright() }}
</footer>
{{ gitter_sidecar() }}
{{ analytics() }}
</body>