Files
mdshop/templates/layout.html
2016-07-04 14:48:07 +03:00

35 lines
1.3 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset=utf-8/>
<title>MDShop</title>
<script language="javascript" src="{{ url_for('static', filename='script.js') }}"></script>
<script language="javascript" src="{{ url_for('static', filename='table.js') }}"></script>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes" />
</head>
<body>
<div class=page>
<div class=metanav>
<a href="{{ url_for('list_shops') }}">Shops</a>
<div class="dropdown">
<p onclick="dropDown()" class="dropbtn">&sube;&supe;</p>
<div id="Dropdown" class="dropdown-content">
<a href="#" onclick="reload();">Reload &#x21bb;</a>
<a href="{{ url_for('profile') }}">Profile &#9786;</a>
<a href="{{ url_for('logout') }}">Logout &#10162;</a>
</div>
</div>
</div>
{% for message in get_flashed_messages() %}
<div class=flash>{{ message }}</div>
{% endfor %}
{% block body %}{% endblock %}
</div>
</body>
</html>