Templates, Bootstrap Navbars, and Links

This commit is contained in:
2024-10-10 11:28:02 +02:00
parent ee8922e728
commit c19c6e650b
7 changed files with 104 additions and 40 deletions

View File

@ -6,8 +6,12 @@
<title>Main</title>
</head>
<body>
<h1>Hello World</h1>
<p style="font-size: 5ch; color: blueviolet; font-weight: bold; font-style: italic;">This is a test</p>
{% extends "base.html" %}
{% block content %}
<h1>Hello World</h1>
<p style="font-size: 5ch; color: blueviolet; font-weight: bold; font-style: italic;">This is a test</p>
{% endblock %}
</body>
</html>