Add recipe for Cheese Soufflé
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>Cheese Soufflé</h1><div class="timing">prep 20 min, cook 35 min</div><div class="icons"><div class="icon gluten-free"></div><div class="icon vegetarian"></div><div class="icon serving"></div>× 4</div><div class="description">This cheese soufflé turns out a fluffy, slightly salty, cheese delight!</div></div></section><section class="instructions"><div class="step"><h3>1</h3><div class="ingredients"><ul><li><div class="amount">2 tbsp</div><div class="item">parmesean cheese</div></li><li><div class="amount"> </div><div class="item">olive oil spray</div></li></ul></div><div class="detail">Adjust oven rack to the middle position pre-heat to 350°F. Spray an 8in soufflé dish with a light coating of oil, and then sprinkle with parmesean cheese.</div></div><div class="step"><h3>2</h3><div class="ingredients"><ul><li><div class="amount">¼ cup</div><div class="item">flour (white, all-purpose)</div></li><li><div class="amount">¼ tsp</div><div class="item">paprika</div></li><li><div class="amount">¼ tsp</div><div class="item">salt</div></li><li><div class="amount">⅛ tsp</div><div class="item">cayenne pepper</div></li><li><div class="amount">⅛ tsp</div><div class="item">white pepper</div></li><li><div class="amount">1 pinch</div><div class="item">nutneg</div></li><li><div class="amount">4 tbsp</div><div class="item">butter (unsalted)</div></li><li><div class="amount">1⅓ cup</div><div class="item">milk (whole)</div></li></ul></div><div class="detail">Combine the flour, salt, and spices in a bowl. Melt the butter in a saucepan over medium-high heat. Stir in the flour mixture and cook until golden. Slowly pour in the milk while whisking slowly and bring to a simmer. Cook, whiskly constantly, until the thickened and smooth.</div></div><div class="step"><h3>3</h3><div class="ingredients"><ul><li><div class="amount">6 oz</div><div class="item">Gruyère cheese</div></li><li><div class="amount">5 tbsp</div><div class="item">parmesean cheese</div></li></ul></div><div class="detail">Remove the saucepan from the heat and mix in the cheese until melted and smooth (about 5min). Let cool for about 10min.</div></div><div class="step"><h3>4</h3><div class="ingredients"><ul><li><div class="amount">6 </div><div class="item">egg yolks</div></li><li><div class="amount">1½ tsp</div><div class="item">parsley (minced)</div></li></ul></div><div class="detail">Whisk in the egg yolks and parsley.</div></div><div class="step"><h3>5</h3><div class="ingredients"><ul><li><div class="amount">6 </div><div class="item">egg whites</div></li><li><div class="amount">¼ tsp</div><div class="item">cream of tartar</div></li></ul></div><div class="detail">Using a standing mixer with a whisk, whip the egg whites and cream of tartar on medium-low foamy (about 1min). Increase to medium-high speed, and whip until stiff peaks form (3–4min). Add cheese mixture and continue to whip until fully combined (15sec).</div></div><div class="step"><h3>6</h3><div class="ingredients"><ul><li><div class="amount">1 tbsp</div><div class="item">parmesean cheese</div></li><li><div class="amount">½ tsp</div><div class="item">parsley (minced)</div></li></ul></div><div class="detail">Pour the mixture into the soufflé dish and sprinkle with remaining parmesean cheese. Bake until risen well above the edge of the dish with a golden-brown top and an interior temperature of at least 170°F (30–35min). Sprinkle the parsley on top.</div></div></section><section class="credits">Cook's Illustrated, <a href="https://www.cooksillustrated.com/recipes/7670">https://www.cooksillustrated.com/recipes/7670</a></section><section class="navigation"><a href="..">« Back</a></section></body></html>
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 144 KiB |
+1
-1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,65 @@
|
|||||||
|
module.exports = require("../helpers")({
|
||||||
|
title: "Cheese Soufflé",
|
||||||
|
timings: {
|
||||||
|
prep: "20 min",
|
||||||
|
cook: "35 min",
|
||||||
|
},
|
||||||
|
icons: ["gluten-free", "vegetarian"],
|
||||||
|
servings: 4,
|
||||||
|
description: "This cheese soufflé turns out a fluffy, slightly salty, cheese delight!",
|
||||||
|
steps: [{
|
||||||
|
ingredients: [
|
||||||
|
{ amount: 2, unit: "tbsp", item: "parmesean cheese" },
|
||||||
|
{ item: "olive oil spray" },
|
||||||
|
],
|
||||||
|
directions: "Adjust oven rack to the middle position pre-heat to 350°F. Spray an 8in soufflé dish with a " +
|
||||||
|
"light coating of oil, and then sprinkle with parmesean cheese."
|
||||||
|
}, {
|
||||||
|
ingredients: [
|
||||||
|
{ amount: 1/4, unit: "cup", item: "flour (white, all-purpose)" },
|
||||||
|
{ amount: 1/4, unit: "tsp", item: "paprika" },
|
||||||
|
{ amount: 1/4, unit: "tsp", item: "salt" },
|
||||||
|
{ amount: 1/8, unit: "tsp", item: "cayenne pepper" },
|
||||||
|
{ amount: 1/8, unit: "tsp", item: "white pepper" },
|
||||||
|
{ amount: 1, unit: "pinch", item: "nutneg" },
|
||||||
|
{ amount: 4, unit: "tbsp", item: "butter (unsalted)" },
|
||||||
|
{ amount: 1 + 1/3, unit: "cup", item: "milk (whole)" },
|
||||||
|
],
|
||||||
|
directions: "Combine the flour, salt, and spices in a bowl. Melt the butter in a saucepan over medium-high " +
|
||||||
|
"heat. Stir in the flour mixture and cook until golden. Slowly pour in the milk while whisking slowly " +
|
||||||
|
"and bring to a simmer. Cook, whiskly constantly, until the thickened and smooth."
|
||||||
|
}, {
|
||||||
|
ingredients: [
|
||||||
|
{ amount: 6, unit: "oz", item: "Gruyère cheese" },
|
||||||
|
{ amount: 5, unit: "tbsp", item: "parmesean cheese" },
|
||||||
|
],
|
||||||
|
directions: "Remove the saucepan from the heat and mix in the cheese until melted and smooth (about 5min). " +
|
||||||
|
"Let cool for about 10min."
|
||||||
|
}, {
|
||||||
|
ingredients: [
|
||||||
|
{ amount: 6, item: "egg yolks" },
|
||||||
|
{ amount: 1+1/2, unit: "tsp", item: "parsley (minced)" },
|
||||||
|
],
|
||||||
|
directions: "Whisk in the egg yolks and parsley."
|
||||||
|
}, {
|
||||||
|
ingredients: [
|
||||||
|
{ amount: 6, item: "egg whites" },
|
||||||
|
{ amount: 1/4, unit: "tsp", item: "cream of tartar" },
|
||||||
|
],
|
||||||
|
directions: "Using a standing mixer with a whisk, whip the egg whites and cream of tartar on medium-low " +
|
||||||
|
"foamy (about 1min). Increase to medium-high speed, and whip until stiff peaks form (3–4min). Add " +
|
||||||
|
"cheese mixture and continue to whip until fully combined (15sec)."
|
||||||
|
}, {
|
||||||
|
ingredients: [
|
||||||
|
{ amount: 1, unit: "tbsp", item: "parmesean cheese" },
|
||||||
|
{ amount: 1/2, unit: "tsp", item: "parsley (minced)" },
|
||||||
|
],
|
||||||
|
directions: "Pour the mixture into the soufflé dish and sprinkle with remaining parmesean cheese. Bake until " +
|
||||||
|
"risen well above the edge of the dish with a golden-brown top and an interior temperature of at least " +
|
||||||
|
"170°F (30–35min). Sprinkle the parsley on top."
|
||||||
|
}],
|
||||||
|
credit: {
|
||||||
|
name: "Cook's Illustrated",
|
||||||
|
url: "https://www.cooksillustrated.com/recipes/7670"
|
||||||
|
}
|
||||||
|
})
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 144 KiB |
@@ -126,6 +126,10 @@ html
|
|||||||
img(src="butter-chicken/large.png")
|
img(src="butter-chicken/large.png")
|
||||||
p Butter Chicken
|
p Butter Chicken
|
||||||
|
|
||||||
|
a(href="cheese-souffle")
|
||||||
|
img(src="cheese-souffle/large.png")
|
||||||
|
p Cheese Soufflé
|
||||||
|
|
||||||
a(href="chicken-breasts-with-caper-cream-sauce")
|
a(href="chicken-breasts-with-caper-cream-sauce")
|
||||||
img(src="chicken-breasts-with-caper-cream-sauce/large.png")
|
img(src="chicken-breasts-with-caper-cream-sauce/large.png")
|
||||||
p Chicken Breasts with Caper Cream Sauce
|
p Chicken Breasts with Caper Cream Sauce
|
||||||
|
|||||||
Reference in New Issue
Block a user