add radiocampus app
This commit is contained in:
parent
87a2ee5a45
commit
7b28149d7e
0
radiocampus/__init__.py
Normal file
0
radiocampus/__init__.py
Normal file
6
radiocampus/apps.py
Normal file
6
radiocampus/apps.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class RadiocampusConfig(AppConfig):
|
||||
default_auto_field = "django.db.models.BigAutoField"
|
||||
name = "radiocampus"
|
0
radiocampus/migrations/__init__.py
Normal file
0
radiocampus/migrations/__init__.py
Normal file
Binary file not shown.
Binary file not shown.
BIN
radiocampus/static/radiocampus/fonts/CampusGroteskv8-Regular.otf
Normal file
BIN
radiocampus/static/radiocampus/fonts/CampusGroteskv8-Regular.otf
Normal file
Binary file not shown.
16
radiocampus/templates/aircox/base.html
Normal file
16
radiocampus/templates/aircox/base.html
Normal 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 %}
|
Loading…
Reference in New Issue
Block a user