19 lines
551 B
HTML
19 lines
551 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 %} Warthunder Leak Counter {% endblock %}</title>
|
|
<link rel="stylesheet" href="/styles/main.css">
|
|
</head>
|
|
<body>
|
|
<div class="background-container">
|
|
<img src="/images/background.jpg" class="background-image">
|
|
<div class="background-filter"></div>
|
|
</div>
|
|
{% block content %}
|
|
<p>Placeholder content</p>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|