diff --git a/_config.yml b/_config.yml index 9230e7963..2dfd950f5 100644 --- a/_config.yml +++ b/_config.yml @@ -43,6 +43,7 @@ translation: totaltime: "Total" storage: "Storage" tip: "Tip" + more: "Discover more" browse_by: "Browse by:" collections: "Collections" collections_browse: "No recipes are marked as being part of a collection." @@ -72,6 +73,7 @@ translation: totaltime: "Total" storage: "Conservation" tip: "Astuce" + more: "Découvrez plus" browse_by: "Naviguer par:" collections: "Collections" collections_browse: "Aucune recette n’a encore été ajoutée à une collection." diff --git a/_includes/nav.html b/_includes/nav.html index 3d1ce1bbb..479e008cd 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -21,7 +21,7 @@ - + diff --git a/_includes/tag-navigation.html b/_includes/tag-navigation.html index 640caff6d..d4454af32 100644 --- a/_includes/tag-navigation.html +++ b/_includes/tag-navigation.html @@ -5,6 +5,6 @@ {{ site.translation[site.language].diets }} {{ site.translation[site.language].courses }} {{ site.translation[site.language].cuisines }} - {{ site.translation[site.language].tags }} {{ site.translation[site.language].collections }} + {{ site.translation[site.language].tags }} \ No newline at end of file diff --git a/_layouts/recipe.html b/_layouts/recipe.html index fdcbdfafb..d4ccc87e8 100644 --- a/_layouts/recipe.html +++ b/_layouts/recipe.html @@ -165,6 +165,7 @@

{{ direction.first[0] }}

{% include nutritional-information.html %}
+

{{ site.translation[site.language].more }}

{% include cuisine.html cuisines=page.cuisines %} {% include course.html courses=page.courses %} diff --git a/_recipes/PBB-bites.md b/_recipes/PBB-bites.md index 58dab9760..0bc0504a5 100644 --- a/_recipes/PBB-bites.md +++ b/_recipes/PBB-bites.md @@ -1,7 +1,7 @@ --- layout: recipe -title: "PBB Frozen Sandwich Bites" +title: "PB&B Frozen Sandwich Bites" image: pbb-bites/pbb-bites-1.jpg cuisines: [américaine] courses: [snack] diff --git a/_recipes/brioche-myrtille.md b/_recipes/brioche-myrtille.md index a377bd655..5aa5d8e6c 100644 --- a/_recipes/brioche-myrtille.md +++ b/_recipes/brioche-myrtille.md @@ -5,7 +5,7 @@ title: "Brioche aux myrtilles" image: bb-brioche/bb-brioche-1.jpg cuisines: [française] courses: [petit-déjeuner, goûter] -tags: [brioche, roll, boulangerie] +tags: [brioche, boulangerie] preptime: 30 min cooktime: 35 min diff --git a/_recipes/crunchem-tartlets.md b/_recipes/crunchem-tartlets.md index cc15c92f8..ef257c9db 100644 --- a/_recipes/crunchem-tartlets.md +++ b/_recipes/crunchem-tartlets.md @@ -1,11 +1,11 @@ --- layout: recipe -title: "Tartelettes Crunch’ Em" +title: "Mini tartelettes Crunch’ Em" image: crunchem/crunchem-1.jpg cuisines: [américaine] courses: [snack] -tags: [bouchée] +tags: [bouchée, tarte] collections: [dino, Peanut Butter] preptime: 1 h diff --git a/_recipes/tarte-cacao.md b/_recipes/tarte-cacao.md index a303c24bf..9f313b372 100644 --- a/_recipes/tarte-cacao.md +++ b/_recipes/tarte-cacao.md @@ -1,7 +1,7 @@ --- layout: recipe -title: "Duo de tartes au cacao" +title: "Tartelettes au cacao" image: tarte-cacao/tarte-cacao-1.jpg cuisines: [française] courses: [dessert, goûter] diff --git a/_recipes/tartelette-avoine-caramel.md b/_recipes/tartelette-avoine-caramel.md index 9f8c7cf1f..88fb7fdf5 100644 --- a/_recipes/tartelette-avoine-caramel.md +++ b/_recipes/tartelette-avoine-caramel.md @@ -1,7 +1,7 @@ --- layout: recipe -title: "Tartelettes avoine et caramel" +title: "Mini tartelettes avoine et caramel" image: tartelette-avoine-caramel/tartelette-avoine-caramel-1.jpg cuisines: [française] courses: [snack] diff --git a/collections.html b/collections.html index cc43674fd..5e31ee0e0 100644 --- a/collections.html +++ b/collections.html @@ -25,7 +25,8 @@

{{ site.translation[site.language].collections }}

{% for collection in allTags %}

{{ collection | capitalize }}

- {% for recipe in site.recipes %} + {% assign sorted = site.recipes | sort:"title" %} + {% for recipe in sorted %} {% if recipe.collections contains collection %}
diff --git a/courses.html b/courses.html index 5e1afc0d1..fb6db6051 100644 --- a/courses.html +++ b/courses.html @@ -25,7 +25,8 @@

{{ site.translation[site.language].courses }}

{% for course in allTags %}

{{ course }}

- {% for recipe in site.recipes %} + {% assign sorted = site.recipes | sort:"title" %} + {% for recipe in sorted %} {% if recipe.courses contains course %}
diff --git a/cuisines.html b/cuisines.html index 5cddc8dd2..5f8cdd251 100644 --- a/cuisines.html +++ b/cuisines.html @@ -25,7 +25,8 @@

{{ site.translation[site.language].cuisines }}

{% for cuisine in allTags %}

{{ cuisine | capitalize }}

- {% for recipe in site.recipes %} + {% assign sorted = site.recipes | sort:"title" %} + {% for recipe in sorted %} {% if recipe.cuisines contains cuisine %}
diff --git a/diets.html b/diets.html index 7eb3013ea..4bd82bd98 100644 --- a/diets.html +++ b/diets.html @@ -27,7 +27,8 @@

{{ site.translation[site.language].diets }}

{% assign dietKey = diet | append:"Diet" %}

{{ site.data.diets[dietKey].name }}

- {% for recipe in site.recipes %} + {% assign sorted = site.recipes | sort:"title" %} + {% for recipe in sorted %} {% if recipe.diets contains diet %}
diff --git a/tags.html b/tags.html index bcf90344b..e51ef42fc 100644 --- a/tags.html +++ b/tags.html @@ -25,7 +25,8 @@

{{ site.translation[site.language].tags }}

{% for tag in allTags %}

{{ tag }}

- {% for recipe in site.recipes %} + {% assign sorted = site.recipes | sort:"title" %} + {% for recipe in sorted %} {% if recipe.tags contains tag %}