Add eggnog recipe
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><link href="../style2.css" rel="stylesheet" type="text/css"><meta charset="UTF-8"><meta name="viewport" content="user-scalable=no, width=device-width"></head><body class="recipe"><section class="header"><div class="image" style="background-image: url('./large.png');"></div><div class="about"><h1>Eggnog</h1><div class="timing">prep 15 min</div><div class="icons"><div class="icon gluten-free"></div><div class="icon low-carb"></div><div class="icon vegetarian"></div><div class="icon serving"></div>× 6</div><div class="description">This makes a very lovely, rich eggnog (with or without the alcohol), but you'll definitely want a mixer for it!</div></div></section><section class="instructions"><div class="step"><h3>1</h3><div class="ingredients"><ul><li><div class="amount">4 </div><div class="item">eggs</div></li></ul></div><div class="detail">In a mixer bowl, beat the egg yolks until the lighten in color. Set aside the whites for later.</div></div><div class="step"><h3>2</h3><div class="ingredients"><ul><li><div class="amount">⅓ cup</div><div class="item">sugar (white)</div></li><li><div class="amount">2 cups</div><div class="item">milk (whole)</div></li><li><div class="amount">1 cup</div><div class="item">heavy cream</div></li><li><div class="amount">3 oz</div><div class="item">bourbon</div></li><li><div class="amount">1 tsp</div><div class="item">nutmeg (ground)</div></li></ul></div><div class="detail">Turn the mixer on low, and gradually add the sugar while beating until it is fully dissolved. Stop the mixer and add the milk, cream, bourbon, and nutmeg. Stir well to combine.</div></div><div class="step"><h3>3</h3><div class="ingredients"><ul><li><div class="amount">1 tbsp</div><div class="item">sugar (white)</div></li></ul></div><div class="detail">Using a mixer, but with a separate bowl, beat the egg whites until they form soft peaks. Gradually add the sugar while the mixer is still running until stiff peaks form.</div></div><div class="step"><h3>4</h3><div class="ingredients"><ul></ul></div><div class="detail">Mix the two bowls together, stirring to combine them fully. Chill before serving.</div></div></section><section class="credits">Alton Brown, <a href="https://www.foodnetwork.com/recipes/alton-brown/eggnog-recipe2-2013745">https://www.foodnetwork.com/recipes/alton-brown/eggnog-recipe2-2013745</a></section><section class="navigation"><a href="..">« Back</a></section></body></html>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 152 KiB |
+1
-1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,38 @@
|
||||
module.exports = require("../helpers")({
|
||||
title: "Eggnog",
|
||||
timings: {
|
||||
prep: "15 min",
|
||||
},
|
||||
icons: ["gluten-free", "low-carb", "vegetarian"],
|
||||
servings: 6,
|
||||
description: "This makes a very lovely, rich eggnog (with or without the alcohol), but you'll definitely want a " +
|
||||
"mixer for it!",
|
||||
steps: [{
|
||||
ingredients: [
|
||||
{ amount: 4, unit: "", item: "eggs" },
|
||||
],
|
||||
directions: "In a mixer bowl, beat the egg yolks until the lighten in color. Set aside the whites for later."
|
||||
}, {
|
||||
ingredients: [
|
||||
{ amount: 1/3, unit: "cup", item: "sugar (white)" },
|
||||
{ amount: 2, unit: "cups", item: "milk (whole)" },
|
||||
{ amount: 1, unit: "cup", item: "heavy cream" },
|
||||
{ amount: 3, unit: "oz", item: "bourbon" },
|
||||
{ amount: 1, unit: "tsp", item: "nutmeg (ground)" },
|
||||
],
|
||||
directions: "Turn the mixer on low, and gradually add the sugar while beating until it is fully dissolved. " +
|
||||
"Stop the mixer and add the milk, cream, bourbon, and nutmeg. Stir well to combine."
|
||||
}, {
|
||||
ingredients: [
|
||||
{ amount: 1, unit: "tbsp", item: "sugar (white)" },
|
||||
],
|
||||
directions: "Using a mixer, but with a separate bowl, beat the egg whites until they form soft peaks. " +
|
||||
"Gradually add the sugar while the mixer is still running until stiff peaks form."
|
||||
}, {
|
||||
directions: "Mix the two bowls together, stirring to combine them fully. Chill before serving."
|
||||
}],
|
||||
credit: {
|
||||
name: "Alton Brown",
|
||||
url: "https://www.foodnetwork.com/recipes/alton-brown/eggnog-recipe2-2013745"
|
||||
}
|
||||
})
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 152 KiB |
@@ -38,6 +38,14 @@ html
|
||||
img(src="southern-buttermilk-biscuits/large.png")
|
||||
p Southern Buttermilk Biscuits
|
||||
|
||||
section
|
||||
h1 Drinks
|
||||
|
||||
.list
|
||||
a(href="eggnog")
|
||||
img(src="eggnog/large.png")
|
||||
p Eggnog
|
||||
|
||||
section
|
||||
h1 Soups
|
||||
|
||||
|
||||
Reference in New Issue
Block a user