<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Index Page</title> | |
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> | |
</head> | |
<body> | |
{% extends 'base.html' %} | |
{% block content %} | |
<h1>Welcome to the Index Page</h1> | |
<p>This is the main page of the application.</p> | |
{% endblock %} | |
</body> | |
</html> |