--- pagination: data: recipes size: 1 resolve: values alias: recipe addAllPagesToCollections: true permalink: "recipes/{{ recipe.title | slug }}/" eleventyComputed: title: "{{ recipe.title }}" layout: main.njk tags: recipe --- ↜ back

{{ recipe.title }}

{{ recipe.description }}

Added by ~{{ recipe.author.username }} ({{ recipe.author.tilde | domain }}) Added {{ recipe.date | date }} {% if recipe.timings %} • Prep: {{ recipe.timings.prep }} min, Cook: {{ recipe.timings.cook }} min, Total: {{ recipe.timings.cook + recipe.timings.prep }} min {% endif %} {% if recipe.servings %} • {{ recipe.servings }} servings {% endif %}

Ingredients

Instructions

    {% for step in recipe.instructions %}
  1. {{ step }}
  2. {% endfor %}