mirror of
https://github.com/pklaus/brother_ql_web.git
synced 2024-05-25 11:56:53 +03:00
45 lines
1.5 KiB
Django/Jinja
45 lines
1.5 KiB
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">
|
|
<link rel="stylesheet" href="/static/css/custom.css">
|
|
|
|
<title>{% block page_title %}{% endblock %} | Brother QL</title>
|
|
</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="/">{{page_headline}}</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div class="jumbotron">
|
|
<div class="container">
|
|
{% block jumbotron %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
<div class="container">{% block content %}{% endblock %}</div>
|
|
|
|
<!-- 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>
|
|
|