33 lines
1.3 KiB
HTML
33 lines
1.3 KiB
HTML
{% load staticfiles %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
|
<meta name="description" content="Page Description">
|
|
<meta name="author" content="xefir">
|
|
<title>Orders Management - {% block title %}--{% endblock %}</title>
|
|
|
|
<!-- Bootstrap -->
|
|
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-default">
|
|
<div class="container-fluid">
|
|
<div class="navbar-header">
|
|
<a class="navbar-brand" href="/">Orders Management</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
|
<script src="{% static 'js/jquery-1.12.0.min.js' %}"></script>
|
|
<!-- Include all compiled plugins (below), or include individual files as needed -->
|
|
<script src="{% static 'js/bootstrap.min.js' %}"></script>
|
|
</body>
|
|
</html>
|