blob: 3c6f3cb0a85e2d72235a3fb6fc7dbbd42902db34 [file] [log] [blame] [edit]
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}My Flask App{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header>
<h1>Welcome to My Flask App</h1>
<nav>
<ul>
<li><a href="{{ url_for('index') }}">Home</a></li>
<!-- Add more navigation links here -->
</ul>
</nav>
</header>
<main>
{% block content %}
{% endblock %}
</main>
<footer>
<p>&copy; 2023 My Flask App</p>
</footer>
</body>
</html>