This commit is contained in:
2024-11-13 14:10:52 +01:00
parent 3803208e17
commit f4b5bc7c50
4 changed files with 272 additions and 0 deletions

18
web/templates/about.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
</head>
<body>
<h1>About Our Flask Application</h1>
<p>This is a simple Flask application created to demonstrate how to render templates and create routes.</p>
<p>Flask is a micro web framework for Python. It is easy to use, lightweight, and flexible for creating web applications.</p>
<h2>Our Mission</h2>
<p>To provide an easy-to-understand tutorial for web development using Flask and Python!</p>
<p><a href="{{ url_for('home') }}">Back to Home</a></p>
</body>
</html>