Added directions back in to Recipes

This commit is contained in:
Justus Grunow 2025-01-25 22:11:32 -05:00
parent 0c1e3e5c3b
commit 6c163c11a7
4 changed files with 61 additions and 0 deletions

View File

@ -24,6 +24,7 @@
</ul>
@ -43,6 +44,7 @@
</ul>
@ -66,6 +68,7 @@
</ul>
@ -89,6 +92,7 @@
</ul>
@ -108,6 +112,7 @@
</ul>
@ -123,6 +128,7 @@
</ul>
@ -142,6 +148,7 @@
</ul>
@ -165,6 +172,7 @@
</ul>

View File

@ -24,6 +24,12 @@
</ul>
<h3>Directions</h3>
<p>1. Stir with ice. Strain into rocks glass over large cube.
1. Garnish with orange twist.
</p>
@ -43,6 +49,12 @@
</ul>
<h3>Directions</h3>
<p>1. Stir with ice. Strain into rocks glass over large cube.
1. Garnish with orange twist.
</p>
@ -66,6 +78,12 @@
</ul>
<h3>Directions</h3>
<p>1. Stir with ice. Strain into chilled coupe.
1. Garnish with orange twist.
</p>
@ -89,6 +107,12 @@
</ul>
<h3>Directions</h3>
<p>1. Stir with ice. Strain into rocks glass over large cube.
1. Garnish with orange twist.
</p>
@ -108,6 +132,11 @@
</ul>
<h3>Directions</h3>
<p>1. Shake with ice. Double strain into chilled coupe.
</p>
@ -123,6 +152,13 @@
</ul>
<h3>Directions</h3>
<p>1. Pour gin and tonic over ice in short glass.
1. Stir gently.
1. Garnish with lime wheel.
</p>
@ -142,6 +178,12 @@
</ul>
<h3>Directions</h3>
<p>1. Shake with ice.
1. Double strain into chilled coupe.
</p>
@ -165,6 +207,12 @@
</ul>
<h3>Directions</h3>
<p>1. Shake with ice.
1. Double strain into chilled coupe.
</p>

View File

@ -11,6 +11,7 @@
{% endfor %}
{% endfor %}
</ul>
{% block directions scoped %}{% endblock %}
{% endfor %}
{% endfor %}
{% endblock %}

View File

@ -1,2 +1,6 @@
{% extends "menu.html" %}
{% block amount %}{{ amount }} {% endblock %}
{% block directions %}
<h3>Directions</h3>
<p>{{ details['directions'] }}</p>
{% endblock %}