From 6c163c11a7e91cb1252a95f1da83fbecdc4eb26c Mon Sep 17 00:00:00 2001 From: Justus Grunow Date: Sat, 25 Jan 2025 22:11:32 -0500 Subject: [PATCH] Added directions back in to Recipes --- index.html | 8 +++++++ recipes.html | 48 ++++++++++++++++++++++++++++++++++++++++++ templates/menu.html | 1 + templates/recipes.html | 4 ++++ 4 files changed, 61 insertions(+) diff --git a/index.html b/index.html index a82cbee..224d605 100644 --- a/index.html +++ b/index.html @@ -24,6 +24,7 @@ + @@ -43,6 +44,7 @@ + @@ -66,6 +68,7 @@ + @@ -89,6 +92,7 @@ + @@ -108,6 +112,7 @@ + @@ -123,6 +128,7 @@ + @@ -142,6 +148,7 @@ + @@ -165,6 +172,7 @@ + diff --git a/recipes.html b/recipes.html index cbd19c5..08cdfaf 100644 --- a/recipes.html +++ b/recipes.html @@ -24,6 +24,12 @@ + +

Directions

+

1. Stir with ice. Strain into rocks glass over large cube. +1. Garnish with orange twist. +

+ @@ -43,6 +49,12 @@ + +

Directions

+

1. Stir with ice. Strain into rocks glass over large cube. +1. Garnish with orange twist. +

+ @@ -66,6 +78,12 @@ + +

Directions

+

1. Stir with ice. Strain into chilled coupe. +1. Garnish with orange twist. +

+ @@ -89,6 +107,12 @@ + +

Directions

+

1. Stir with ice. Strain into rocks glass over large cube. +1. Garnish with orange twist. +

+ @@ -108,6 +132,11 @@ + +

Directions

+

1. Shake with ice. Double strain into chilled coupe. +

+ @@ -123,6 +152,13 @@ + +

Directions

+

1. Pour gin and tonic over ice in short glass. +1. Stir gently. +1. Garnish with lime wheel. +

+ @@ -142,6 +178,12 @@ + +

Directions

+

1. Shake with ice. +1. Double strain into chilled coupe. +

+ @@ -165,6 +207,12 @@ + +

Directions

+

1. Shake with ice. +1. Double strain into chilled coupe. +

+ diff --git a/templates/menu.html b/templates/menu.html index 3625311..ab69f45 100644 --- a/templates/menu.html +++ b/templates/menu.html @@ -11,6 +11,7 @@ {% endfor %} {% endfor %} + {% block directions scoped %}{% endblock %} {% endfor %} {% endfor %} {% endblock %} diff --git a/templates/recipes.html b/templates/recipes.html index c3df432..8e0514f 100644 --- a/templates/recipes.html +++ b/templates/recipes.html @@ -1,2 +1,6 @@ {% extends "menu.html" %} {% block amount %}{{ amount }} {% endblock %} +{% block directions %} +

Directions

+

{{ details['directions'] }}

+{% endblock %}