Created layout.html

This commit is contained in:
Kristofers Solo 2023-03-27 20:48:38 +03:00
parent 7dd314b08c
commit 9959ec5b16

15
templates/layout.html Normal file
View File

@ -0,0 +1,15 @@
{% load static %}
<!DOCTYPE html>
<html lang="en" data-color-mode="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
{% block title %}{% endblock %}
</title>
{% block meta %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>