--- bodyClass: c-home --- {% extends 'layouts/base.njk' %} {% block content %} {{title}} {{ site.author }} {% set homeSearch = true %} {% include "components/search.njk" %} 🔀 {{ randomRecipe }} {% if collections["Favourite ⭐"] %}} {{ favouriteRecipes }} {% set favouriteRecipes = collections["Favourite ⭐"] | limit(4) %} {% for recipe in favouriteRecipes %} {% recipeimage recipe.fileSlug, "c-card__image", recipe.data.title, "(min-width: 1150px) 25vw, (min-width: 850px) 33vw, (min-width: 550px) 50vw, 100vw" %} {% for tag in recipe.data.tags %} {{ tag | onlyEmoji | safe }} {% endfor %} {% if recipe.data.time %} {% include 'icons/time.svg' %} {{ recipe.data.time }} {% endif %} {{ recipe.data.title }} {% endfor %} {% endif %} {% endblock %}