{% for recipe in site.recipes | limit: 15 -%}

{{ recipe.name }}

By {{ recipe.author }} - {% if recipe.difficulty %}Difficulty: {{ recipe.difficulty | to_stars }} - {%- endif %} {{ recipe.method | size }} steps {%- if recipe.time %} - {{ recipe.time | hours_and_minutes: false }}{%- endif -%}

    {% for step in recipe.method | limit: 4 %}
  1. {{ step }}
  2. {% endfor %}
{% endfor %}