---
pagination:
data: collections.recipesBySlug
size: 1
alias: slugData
resolve: keys
permalink: /recipe/{{ slugData }}/
layout: base.njk
pageType: recipe
excludeFromSitemap: true
eleventyComputed:
title: "{{ collections.recipesBySlug[slugData].newest.data.title }}"
---
{% set recipeData = collections.recipesBySlug[slugData] %}
{% set recipe = recipeData.newest %}
{% if recipe %}
{% if recipe.data.plantBased === false %}
This recipe contains products of animal agriculture. Animal agriculture is a significant contributor to greenhouse gas emissions, deforestation, water pollution, and worker exploitation. Consider exploring plant-based alternatives to reduce negative impacts.
{% endif %}
{{ recipe.content | renderRecipeMarkdown | safe }}
{% set recipeTags = recipe.inputPath | extractTagsFromFile %}
{% if recipeTags.length > 0 %}
{% endif %}
{% set nonDraftVersions = [] %}
{% for version in recipeData.versions %}
{% if not version.data.isDraft %}
{% set nonDraftVersions = (nonDraftVersions.push(version), nonDraftVersions) %}
{% endif %}
{% endfor %}
{% if nonDraftVersions.length > 1 %}
Other versions:
{% for version in nonDraftVersions %}
{% if not version.data.isNewestVersion %}
v{{ version.data.recipeVersion }} {% if not loop.last %}, {% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% else %}
No published recipe found for this slug.
{% endif %}