{% extends "base.jinja" %} {% block content %}
{% include "../top_bar.jinja" %}
{{recipe.title}}

{{ recipe.title }}

{% match recipe.summary %} {% when Some with (summary) %}

{{ summary }}

{% when None %} {% endmatch %}

Ingredients

    {% for ingredient in ingredients %}
  • {{ ingredient.qty }} {{ ingredient.unit }} {{ ingredient.name }}
  • {% endfor %}

Instructions

    {% for step in steps %}
  1. {{ step.body }}
    {{ step.hint.clone().unwrap_or_default() }}
  2. {% endfor %}

Tags

{% for tag in tags %} {{ tag.name }} {% endfor %}

Ingredients

{% for ingredient in ingredients %} {{ ingredient.name }} {% endfor %}
{% endblock %}