todos/django-todo/templates/todo/base.html

13 lines
287 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Todo!</title>
{% block styles %} {% endblock %}
</head>
<body>
{% block content %} {% endblock %}
</body>
</html>