Files
zjpb.net/templates/admin/custom_base.html

18 lines
589 B
HTML
Raw Normal View History

{% 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 %}