renamed "pages" to "views"

This commit is contained in:
eclipse 2025-04-18 15:58:30 +02:00
parent 7d58b27c0c
commit 9205642768
2 changed files with 0 additions and 18 deletions

View File

@ -1,9 +0,0 @@
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}About{% endblock title %}</h1>
{% endblock header %}
{% block content %}
<p>This is a message board for friendly messages.</p>
{% endblock content %}

View File

@ -1,9 +0,0 @@
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}Home{% endblock title %}</h1>
{% endblock header %}
{% block content %}
<p>Learn more about this project by visiting the <a href="{{ url_for('pages.about') }}">About page</a>.</p>
{% endblock content %}