You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
271 B

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