TRM-coding | 286e678 | 2025-06-13 21:00:11 +0800 | [diff] [blame] | 1 | <!DOCTYPE html> |
2 | <html lang="en"> | ||||
3 | <head> | ||||
4 | <meta charset="UTF-8"> | ||||
5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||||
6 | <title>Index Page</title> | ||||
7 | <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> | ||||
8 | </head> | ||||
9 | <body> | ||||
10 | {% extends 'base.html' %} | ||||
11 | |||||
12 | {% block content %} | ||||
13 | <h1>Welcome to the Index Page</h1> | ||||
14 | <p>This is the main page of the application.</p> | ||||
15 | {% endblock %} | ||||
16 | </body> | ||||
17 | </html> |