Skip to content

Commit

Permalink
Moved Sangria recipe out of Untested
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronTraas committed Jul 31, 2024
1 parent aab1dad commit bd52c16
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Recipes/mobile/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,18 +129,15 @@ <h1>Recipe Search</h1>
{%- assign ingredients = 'none' -%}
{%- endif -%}

{%- assign tags_sorted = tags | sort -%}
{%- assign ingredients_sorted = ingredients | sort -%}

<a class="recipe-link tag-{{ tags | join: ' tag-' }} ingredient-{{ ingredients | join: ' ingredient-' }}" href="{{ page.url | relative_url }}">
<strong>{{page.title}}</strong>
<ul class="tags">
{% for tag in tags_sorted %}
{% for tag in tags %}
<li>{{tag}}</li>
{% endfor -%}
</ul>
<ul class="key-ingredients">
{% for ingredient in ingredients_sorted %}
{% for ingredient in ingredients %}
<li>{{ingredient}}</li>
{% endfor -%}
</ul>
Expand Down

0 comments on commit bd52c16

Please sign in to comment.