Files
CS361-Portfolio-Project/templates/recipes.html
2022-04-28 22:15:45 -07:00

19 lines
342 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]['name']}}</a>
</li>
{% endfor %}
</ul>
{% endblock %}