adaugat lab3

Signed-off-by: hellisabove <robertnedela15@gmail.com>
This commit is contained in:
hellisabove
2026-04-07 19:13:54 +03:00
parent 918bad1a47
commit 8b7c9a5527
57 changed files with 60116 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{% extends "_base.html" %}
{% block title %}Second Page - Lab 03{% endblock %}
{% block content %}
<div class="content-box main-content">
<h1 class="main-title">Second Page</h1>
<p>
This is the second page of our Flask application.
</p>
<p>
Here you can see how Jinja2 template inheritance allows us to reuse the same layout across multiple pages.
The navbar, header, and sidebar are all defined in <code>_base.html</code>, while this content is unique to <code>second.html</code>.
</p>
<img src="/public/images/cats.jpeg" alt="Cats" class="img-fluid">
</div>
{% endblock %}