2024-02-28 21:31:43 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
2024-02-29 14:47:12 +01:00
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
2024-03-04 10:33:39 +01:00
|
|
|
<style>
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
th, td {
|
|
|
|
padding: 8px;
|
|
|
|
text-align: left;
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
background-color: #f2f2f2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Responsive styles */
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
table {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table caption {
|
|
|
|
font-size: 1.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table thead {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr {
|
|
|
|
border-bottom: 3px solid #ddd;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td {
|
|
|
|
display: block;
|
|
|
|
text-align: right;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td::before {
|
|
|
|
content: attr(data-label);
|
|
|
|
font-weight: bold;
|
|
|
|
display: inline-block;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
2024-02-28 21:31:43 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
<hr>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
{% block scripts %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|