brother_ql_web/views/base.jinja2
2016-12-18 15:10:02 +01:00

27 lines
809 B
Django/Jinja

<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
<title>{% block page_title %}{% endblock %} | Brother QL</title>
</head>
<body>
<h1>{% block page_headline %}{% endblock %}</h1>
{% block content %}{% endblock %}
<!-- jQuery first, then Bootstrap JS. -->
<script src="/static/js/jquery.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
<script type="text/javascript">
{% block javascript %}{% endblock %}
</script>
</body>
</html>