django-project/templates/base.html

25 lines
480 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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">
<style>
body {
max-width: 80ch;
margin: 0 auto;
}
</style>
{% load static %}
{% block head %}{% endblock %}
<title>{% block title %}Barn{% endblock %}</title>
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>