{% extends "layouts/base.html" %} {% block title %}Recipes{% endblock %} {% block head %} {% endblock %} {% block content %}

Starters

{% for recipe in recipes.starters %} {% include "components/kh3/recipe.html" %} {% endfor %}

Soups

{% for recipe in recipes.soups %} {% include "components/kh3/recipe.html" %} {% endfor %}

Fish Dishes

{% for recipe in recipes.fish %} {% include "components/kh3/recipe.html" %} {% endfor %}

Meat Dishes

{% for recipe in recipes.meat %} {% include "components/kh3/recipe.html" %} {% endfor %}

Deserts

{% for recipe in recipes.deserts %} {% include "components/kh3/recipe.html" %} {% endfor %}
{% endblock %}