summaryrefslogtreecommitdiff
path: root/global/templates
diff options
context:
space:
mode:
Diffstat (limited to 'global/templates')
-rw-r--r--global/templates/base.html.j218
1 files changed, 18 insertions, 0 deletions
diff --git a/global/templates/base.html.j2 b/global/templates/base.html.j2
new file mode 100644
index 0000000..61826d9
--- /dev/null
+++ b/global/templates/base.html.j2
@@ -0,0 +1,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>