blob: 21530c78db3038e8f3d7cb614cb225795e316905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!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 %}website{% 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>
|