TEMPLATE Ready

This commit is contained in:
2026-09-06 00:02:20 +03:00
parent 6842471664
commit 7ec112134a
16 changed files with 263 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
<title>{% block title %}Django Project{% endblock %}</title>
</head>
<body>
<main class="container">
<h1>{% block content %}Django Project{% endblock %}</h1>
</main>
</body>
</html>