summaryrefslogtreecommitdiff
path: root/global/templates/base.html.j2
blob: 61826d91a10a297bb6acfadbd78ce6da310b0dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
    <meta charset="utf-8"/>
	<title>{% block page_title %}{% endblock %}</title>
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <meta property="og:title" content="{% block og_page_title %}{% endblock %}" />
    <meta property="og:type" content="{% block og_type %}{% endblock %}" />
    <meta property="og:url" content="{{ url }}" />
    {% block head_extra %}<link rel="stylesheet" href="{{ site.assets_path_static }}/css/bootstrap-grid.min.css" />{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
<footer>
    {% block footer %}{% endblock %}
</footer>
</html>