18 lines
743 B
HTML
18 lines
743 B
HTML
{% extends "admin/base.html" %}
|
|
{% load static %}
|
|
|
|
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static 'override.css' %}" />
|
|
<link rel="stylesheet" type="text/css" href="{% static 'fonts.css' %}" />
|
|
{% endblock %}
|
|
{% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
|
|
|
|
{% block branding %}
|
|
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django administration') }}</a></h1>
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
{% if plausible_domain %}
|
|
<script defer data-domain="{{ plausible_domain }}" src="https://plausible.io/js/script.js"></script>
|
|
{% endif %}
|
|
{% endblock %}
|