TrhlinaBar/templates/base.html
2023-03-06 09:39:34 +01:00

36 lines
915 B
HTML

<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="{{ url_for('static', filename='pico.min.css') }}">
<title>TrhBar</title>
<style>
.message {
padding: 10px;
margin: 5px;
background-color: #f3f3f3
}
nav a {
color: #d64161;
font-size: 3em;
margin-left: 50px;
text-decoration: none;
}
</style>
<meta name="viewport" content="initial-scale=2.5">
</head>
<body>
<script type="text/javascript">
function busy(id) { document.getElementById(id).setAttribute("aria-busy","true"); }
</script>
<main class="container">
{% block content %} {% endblock %}
<a href="/" role="button" style="position: fixed; bottom: 10px; left: 10px;">Zpět na scanner</a>
</main>
</body>
</html>