18 lines
589 B
HTML
18 lines
589 B
HTML
|
|
{% extends 'admin/base.html' %}
|
||
|
|
|
||
|
|
{% block head_css %}
|
||
|
|
{{ super() }}
|
||
|
|
<!-- Google Fonts -->
|
||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Noto+Sans:wght@400;500;700&display=swap" rel="stylesheet">
|
||
|
|
<!-- Custom Admin Theme -->
|
||
|
|
<link href="{{ url_for('static', filename='css/admin-theme.css') }}" rel="stylesheet">
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block body %}
|
||
|
|
<body class="admin-theme">
|
||
|
|
{{ super() }}
|
||
|
|
</body>
|
||
|
|
{% endblock %}
|