Compare commits

...

2 Commits

Author SHA1 Message Date
eecd62f5b2 Add favicon 2023-01-16 17:21:35 +01:00
2c1e71db77 Fix settings 2023-01-16 17:19:04 +01:00
3 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,7 @@ SECRET_KEY = env("SECRET_KEY")
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = env('DEBUG')
ALLOWED_HOSTS = env('ALLOWED_HOSTS')
ALLOWED_HOSTS = env.list('ALLOWED_HOSTS')
# Application definition

BIN
static/favicon.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -6,6 +6,7 @@
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>{% block title %}Movieclub{% endblock %}</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='icon' type="image/webp" href="{% static 'favicon.webp' %}">
<link rel='stylesheet' type='text/css' media='screen' href='{% static "style/main.css" %}'>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">