Initial project version
This commit is contained in:
28
store/webview/templates/base.html
Executable file
28
store/webview/templates/base.html
Executable file
@ -0,0 +1,28 @@
|
||||
<!doctype html>
|
||||
<head>
|
||||
<title>Store Webview</title>
|
||||
|
||||
<script defer type='text/javascript' src="{{ url_for('static', filename='jquery_v3/jquery-3.3.1.slim.min.js') }}"></script>
|
||||
<script defer type='text/javascript' src="{{ url_for('static', filename='popper_v1/popper.min.js') }}"></script>
|
||||
<script defer type='text/javascript' src="{{ url_for('static', filename='bootstrap_v4/js/bootstrap.min.js') }}"></script>
|
||||
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='bootstrap_v4/css/bootstrap.min.css') }}" />
|
||||
|
||||
|
||||
{% block head %}{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
<div class=page>
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||||
<a class="navbar-brand" href="{{ url_for('view_simulations') }}">Store</a>
|
||||
<a class="nav-link" href="{{ url_for('view_statistics') }}">Statistics</a>
|
||||
</nav>
|
||||
{% for message in get_flashed_messages() %}
|
||||
<div class=flash>{{ message }}</div>
|
||||
{% endfor %}
|
||||
<br />
|
||||
<div class="container-fluid">
|
||||
{% block body %}{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
Reference in New Issue
Block a user