39 lines
774 B
HTML
39 lines
774 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<link rel="stylesheet" href="/styles/main.css" />
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "sans";
|
|
}
|
|
|
|
.main-title {
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
min-height: 50vh;
|
|
}
|
|
|
|
.count {
|
|
font-size: 4rem;
|
|
color: #ef2843;
|
|
}
|
|
|
|
.count-label {
|
|
font-size: 2rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
<p>Placeholder content</p>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|