Set color-scheme meta tag and max-width body

This commit is contained in:
Benjamin 2023-03-11 19:11:18 +01:00
parent d39ffc822c
commit 70474060e7

View file

@ -4,7 +4,14 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="color-scheme" content="dark light">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
max-width: 80ch;
margin: 0 auto;
}
</style>
{% load static %} {% load static %}
{% block head %}{% endblock %} {% block head %}{% endblock %}
<title>{% block title %}Barn{% endblock %}</title> <title>{% block title %}Barn{% endblock %}</title>