aircox-radiocampus/radiocampus/templates/aircox/base.html
2024-05-01 02:18:36 +02:00

24 lines
408 B
HTML

{% extends "aircox/base.html" %}
{% load static %}
{% block head %}
{{ block.super }}
<style>
:root {
--heading-font-family: "campus_heading";
}
@font-face {
font-family: 'campus_heading';
src: url('{% static "radiocampus/fonts/CampusGroteskv12-Regular.otf" %}');
}
</style>
{% endblock %}
{% block header-container %}
{% if not page.attach_to %}
{{ block.super }}
{% endif %}
{% endblock %}