diff options
-rw-r--r-- | content/recipes/hard-seltzer.md | 20 | ||||
-rw-r--r-- | themes/Brine/layouts/_default/recipes.html | 4 |
2 files changed, 24 insertions, 0 deletions
diff --git a/content/recipes/hard-seltzer.md b/content/recipes/hard-seltzer.md new file mode 100644 index 0000000..79e7677 --- /dev/null +++ b/content/recipes/hard-seltzer.md @@ -0,0 +1,20 @@ +--- +title: Hard Seltzer +recipe: drink +--- + +* Servings: 1 +* Carbs: Approx 1g per serving +* Preparation Time: 1 minute +* Serving Size: 500ml +* ABV: 4% + +# Ingredients +* 400ml sparkling water +* 50ml sugar-free cordial +* 50ml vodka + +# Process +* Combine in a glass, you're done. + +Source: Self diff --git a/themes/Brine/layouts/_default/recipes.html b/themes/Brine/layouts/_default/recipes.html index b39c13f..ee63edc 100644 --- a/themes/Brine/layouts/_default/recipes.html +++ b/themes/Brine/layouts/_default/recipes.html @@ -15,4 +15,8 @@ <h3>Desserts</h3> <ul>{{ range sort .Site.Taxonomies.recipe.dessert ".Page.RelPermalink" }} <li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }} + </ul> + <h3>Drinks</h3> + <ul>{{ range sort .Site.Taxonomies.recipe.drink ".Page.RelPermalink" }} + <li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }} </ul>{{ end }} |