adaugat niste chestii

Signed-off-by: Robert Nedela <robertnedela15@gmail.com>
This commit is contained in:
Robert Nedela
2026-03-24 17:23:03 +02:00
parent 73c4e2dfd7
commit 918bad1a47
5 changed files with 15 additions and 10 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

+6 -2
View File
@@ -14,9 +14,10 @@ header {
} }
header #header-image { header #header-image {
height: 180px; height: 250px;
background: url('./images/maestrul.jpg'); background: url('./images/maestrul.jpg');
background-size: cover; background-size: cover;
background-position: center top; /* or "center center" */
padding: 1rem 2rem; padding: 1rem 2rem;
text-align: right; text-align: right;
} }
@@ -44,7 +45,10 @@ header #header-image h1 {
border-radius: 15px; border-radius: 15px;
} }
.site-header .navbar-nav .nav-link.active { .site-header .navbar-nav .nav-link.active {
font-weight: 500; font-weight: bold;
background-color: #610;
color: #ffffff !important;
border-radius: 15px;
} }
main { main {
+1 -1
View File
@@ -1,6 +1,6 @@
from flask import Flask, request, render_template, redirect from flask import Flask, request, render_template, redirect
app = Flask(__name__, static_folder="public") app = Flask(__name__, static_url_path="/public", static_folder="public")
@app.route("/") @app.route("/")
+2
View File
@@ -1,7 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html>
<head> <head>
<title>Hello World</title> <title>Hello World</title>
</head> </head>
<body bgcolor=red> <body bgcolor=red>
<h1><b>404 NOT FOUND</b></h1> <h1><b>404 NOT FOUND</b></h1>
</body> </body>
</html>
-1
View File
@@ -52,7 +52,6 @@
<!-- Big page title --> <!-- Big page title -->
<h1 class="main-title">Homepage</h1> <h1 class="main-title">Homepage</h1>
{{mycontent}} {{mycontent}}
<!-- TODO_task01: Add some lorem ipsum paragraphs here (remove the TODO class, please!) -->
<p class="todo">Lorem ipsum dolor sit amet consectetur adipiscing elit. Adipiscing elit quisque faucibus ex sapien vitae pellentesque. Vitae pellentesque sem placerat in id cursus mi. Cursus mi pretium tellus duis convallis tempus leo. Tempus leo eu aenean sed diam urna tempor. Urna tempor pulvinar vivamus fringilla lacus nec metus.</p> <p class="todo">Lorem ipsum dolor sit amet consectetur adipiscing elit. Adipiscing elit quisque faucibus ex sapien vitae pellentesque. Vitae pellentesque sem placerat in id cursus mi. Cursus mi pretium tellus duis convallis tempus leo. Tempus leo eu aenean sed diam urna tempor. Urna tempor pulvinar vivamus fringilla lacus nec metus.</p>
</div> </div>
</div> </div>