test
This commit is contained in:
13
app/templates/home.html
Normal file
13
app/templates/home.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Home{% endblock %}
|
||||
{% block content %}
|
||||
<h1>Welcome to the Flask App</h1>
|
||||
<p>This is the homepage of the Flask application.</p>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="{{ url_for('home') }}">Home</a></li>
|
||||
<li><a href="{{ url_for('admin') }}">Admin</a></li>
|
||||
<li><a href="{{ url_for('login') }}">Login</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user