covid-formity/templates/base.html

70 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>COVID-19 Relief</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- apage satanas -->
<meta property="og:image" content="https://static.hackerspace.pl/img/syrenka-1200.png">
<meta name="twitter:image" content="https://static.hackerspace.pl/img/syrenka-1200.png">
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.css') }}" media="screen">
<style>
body {
margin-top: 20px;
}
h3 {
margin: 0;
padding: 0;
padding-bottom: 0.5em;
}
footer {
padding-bottom: 20px;
}
h3.page-header {
margin-top: 10px;
}
.input-group-btn .btn {
padding-bottom: 8px;
}
.placeholder {
text-align: center;
opacity: 0.5;
font-style: italic;
}
.vend-item code {
word-wrap: break-word;
}
.control-label-required::after {
content: ' *';
color: red;
}
</style>
</head>
<body>
<div class="container">
{% with messages = get_flashed_messages(with_categories=true) %}
{% for category, message in messages %}
<div class="alert alert-{{category}}">{{ message }}</div>
{% endfor %}
{% endwith %}
{% block content %}{% endblock %}
<div class="row">
<hr>
<footer class="row text-center text-muted"><big>made by volunteers at <a href="https://hackerspace.pl/">Warsaw Hackerspace</a></big> &amp; also wash your lovely hands</footer>
</div>
</div>
<script src="{{ url_for('static', filename='js/jquery-1.10.2.min.js') }}"></script>
<script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
{% block tail_js %}
{% endblock %}
</body>
</html>