the_works/the_works/templates/pages/home.html

9 lines
274 B
HTML

{% 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 %}