brother_ql_web/views/base.jinja2

45 lines
1.5 KiB
Plaintext
Raw Normal View History

2016-11-25 22:21:42 +02:00
<!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">
<link rel="stylesheet" href="/static/css/custom.css">
2016-11-25 22:21:42 +02:00
<title>{{ website['HTML_TITLE'] }} | Brother QL</title>
2016-11-25 22:21:42 +02:00
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">{{ website['PAGE_TITLE'] }}</a>
</div>
</div>
</nav>
<div class="jumbotron">
<div class="container">
{% block jumbotron %}{% endblock %}
</div>
</div>
<div class="container">{% block content %}{% endblock %}</div>
2016-11-25 22:21:42 +02:00
<!-- jQuery first, then Bootstrap JS. -->
<script src="/static/js/jquery.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
2016-11-25 22:21:42 +02:00
<script type="text/javascript">
{% block javascript %}{% endblock %}
</script>
</body>
</html>