Create Initial Quiz App and Model Structure

This commit is contained in:
Juhn-Vitus Saß
2025-02-28 14:08:02 +01:00
parent 3adaba94b8
commit 293cde3fdd
10 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{% load static %}
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{% static 'homepage/t-style.css' %}">
<title>qivip</title>
</head>
<body>
{% include 'homepage/partials/_nav.html' %}
{% block content%}{% endblock %}
{% include 'homepage/partials/_footer.html' %}
</body>
</html>