45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>StarfallBot - {% block titleSuffix %}Unassigned{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
<meta name="description" content="StarfallBot administation interface" />
|
|
|
|
<link rel="icon" href="{{ url_for('static', filename='favicon.png') }}" />
|
|
<link rel="preload" href="{{ url_for('static', filename='style/fonts.css') }}" as="style" />
|
|
<link rel="preload" href="{{ url_for('static', filename='style/main.css') }}" as="style" />
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style/fonts.css') }}" />
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style/main.css') }}" />
|
|
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
{% block beforeMain %}
|
|
{% endblock %}
|
|
|
|
<main>
|
|
{% block beforeMainContainer %}
|
|
{% endblock %}
|
|
|
|
<div class="container">
|
|
{% block body %}
|
|
|
|
<p>No content has been defined for this page.</p>
|
|
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% block afterMainContainer %}
|
|
{% endblock %}
|
|
</main>
|
|
|
|
{% block afterMain %}
|
|
{% endblock %}
|
|
</body>
|
|
|
|
</html> |