Files
CS361-Portfolio-Project/templates/recipes.html
2022-04-29 17:11:38 -07:00

20 lines
346 B
HTML

{% extends "base.html" %}
{% block title %}Recipes{% endblock %}
{% block html_head %}
{% endblock %}
{% block content %}
<h1>Bread Recipes</h1>
<ul>
{% for recipe in content %}
<li>
<a href=recipes/{{recipe}}>{{content[recipe].get_name()}}</a>
</li>
{% endfor %}
</ul>
{% endblock %}