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

@ -27,6 +27,7 @@
<h2>Boulevardier</h2>
<ul>
@ -46,6 +47,7 @@
<h2>Black Manhattan</h2>
<ul>
@ -69,6 +71,7 @@
<h2>MonteNegroni</h2>
<ul>
@ -92,6 +95,7 @@
<h2>Sidecar</h2>
<ul>
@ -111,6 +115,7 @@
<h2>Gin &amp; Tonic</h2>
<ul>
@ -126,6 +131,7 @@
<h2>Gimlet</h2>
<ul>
@ -145,6 +151,7 @@
<h2>Bennet</h2>
<ul>
@ -169,5 +176,6 @@
</body>
</html>

View File

@ -25,6 +25,12 @@
</ul>
<h3>Directions</h3>
<p>1. Stir with ice. Strain into rocks glass over large cube.
1. Garnish with orange twist.
</p>
<h2>Boulevardier</h2>
@ -44,6 +50,12 @@
</ul>
<h3>Directions</h3>
<p>1. Stir with ice. Strain into rocks glass over large cube.
1. Garnish with orange twist.
</p>
<h2>Black Manhattan</h2>
@ -67,6 +79,12 @@
</ul>
<h3>Directions</h3>
<p>1. Stir with ice. Strain into chilled coupe.
1. Garnish with orange twist.
</p>
<h2>MonteNegroni</h2>
@ -90,6 +108,12 @@
</ul>
<h3>Directions</h3>
<p>1. Stir with ice. Strain into rocks glass over large cube.
1. Garnish with orange twist.
</p>
<h2>Sidecar</h2>
@ -109,6 +133,11 @@
</ul>
<h3>Directions</h3>
<p>1. Shake with ice. Double strain into chilled coupe.
</p>
<h2>Gin &amp; Tonic</h2>
@ -124,6 +153,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>
<h2>Gimlet</h2>
@ -143,6 +179,12 @@
</ul>
<h3>Directions</h3>
<p>1. Shake with ice.
1. Double strain into chilled coupe.
</p>
<h2>Bennet</h2>
@ -166,6 +208,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 %}