#132 | #121: backoffice / dev-1.0-121 #131

Merged
thomas merged 151 commits from dev-1.0-121 into develop-1.0 2024-04-28 20:02:14 +00:00
7 changed files with 22 additions and 0 deletions
Showing only changes of commit 7b28149d7e - Show all commits

0
radiocampus/__init__.py Normal file
View File

6
radiocampus/apps.py Normal file
View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class RadiocampusConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "radiocampus"

View File

View File

@ -0,0 +1,16 @@
{% extends "aircox/base.html" %}
{% load static %}
{% block head_extra %}
{{ 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 %}