support/templates/layout.html

16 lines
445 B
HTML
Raw Normal View History

2017-11-06 09:59:56 +00:00
<!doctype html>
<meta charset="utf-8">
2018-01-12 07:37:06 +00:00
<link rel="stylesheet" href="{{ '/static/bootstrap.css'|asseturl }}">
2018-02-15 18:11:16 +00:00
<link rel="stylesheet" href="{{ '/static/fonts/open-iconic/font/css/open-iconic-bootstrap.css'|asseturl }}">
<title>{% block title %}{% endblock %}</title>
<body class="no-gutters">
2017-11-06 09:59:56 +00:00
<header>
2018-01-12 07:37:06 +00:00
{% include 'navbar.html' %}
2017-11-06 09:59:56 +00:00
</header>
{% block body %}{% endblock %}
2017-11-06 09:59:56 +00:00
<footer>
{% include 'footer.html' %}
2017-11-06 09:59:56 +00:00
</footer>
</body>