{% extends 'base.html' %}
|
|
|
|
{% block title %}Home{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Recipes</h1>
|
|
<ul>
|
|
{% for recipe in recipes %}
|
|
<li><a href="{{ url_for('recipe', recipe_id=recipe.id) }}">{{ recipe.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|