blob: caf9064aac3d96206d7693c56e59756d86b41083 (
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" />
<link rel="stylesheet" href="{{ site.assets_path_static }}/css/navbar.css" />{% endblock %}
</head>
<body>
{% block body %}{% include 'navbar.html.j2' %}{% endblock %}
</body>
</html>
|