14 lines
255 B
HTML
14 lines
255 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Home Page{% endblock %}
|
|
|
|
{% block html_head %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Welcome to the Bread App!</h1>
|
|
|
|
<p>Add, scale, and convert all your bread recipes here.</p>
|
|
|
|
{% endblock %} |