Files
CS361-Portfolio-Project/templates/index.html
2022-04-22 09:30:01 -07:00

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