This repository has been archived on 2025-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
vwa_project/web/templates/about.html
2024-11-13 14:10:52 +01:00

19 lines
668 B
HTML

<!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>