Add Egg Drop Soup

This commit is contained in:
Andrew Miner
2019-12-15 10:50:05 -07:00
parent eb5c7430d3
commit d44c77656b
6 changed files with 156 additions and 9 deletions
+4
View File
@@ -72,6 +72,10 @@
<img src="soups/curry-butternut-squash-and-apple-soup/image.png" /> <img src="soups/curry-butternut-squash-and-apple-soup/image.png" />
<p>Curry Butternut Squash & Apple Soup</p> <p>Curry Butternut Squash & Apple Soup</p>
</a> </a>
<a href="soups/egg-drop-soup">
<img src="soups/egg-drop-soup/image.png" />
<p>Egg Drop Soup</p>
</a>
<a href="soups/french-onion-soup"> <a href="soups/french-onion-soup">
<img src="soups/french-onion-soup/image.png" /> <img src="soups/french-onion-soup/image.png" />
<p>French Onion Soup</p> <p>French Onion Soup</p>
Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

+118
View File
@@ -0,0 +1,118 @@
<!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" />
<body class="recipe">
<section class="header">
<div class="image" style="background-image: url('./image.png')"></div>
<div class="about">
<h1>Egg Drop Soup</h1>
<div class="timing">
prep 20 minutes </div>
<div class="icons">
<div class="icon gluten-free"></div>
<div class="icon low-carb"></div>
<div class="icon overnight"></div>
<div class="icon vegetarian"></div>
<div class="icon serving"></div>× 4
</div>
<div class="description">This Egg Drop soup is born from a love of the soup and MANY trips to my favorite Chinese restaurant (asking them many questions) resulting in this variation. Compare it to your local restaurant...The simplicity is the key. Soup can be re-heated or frozen and re-heated.
</div>
</div>
</section>
<section class="instructions">
<div class="step">
<h3>1</h3>
<div class="ingredients">
<ul>
<li>
<div class="amount">
3¼ cups
</div>
<div class="item">chicken broth</div>
<li>
<div class="amount">
⅛ tsp
</div>
<div class="item">ginger, powdered</div>
<li>
<div class="amount">
2 tbsp
</div>
<div class="item">chives, fresh (diced)</div>
<li>
<div class="amount">
¼ tsp
</div>
<div class="item">salt</div>
<li>
<div class="amount">
2
</div>
<div class="item">eggs</div>
<li>
<div class="amount">
1
</div>
<div class="item">egg yolk</div>
</ul>
</div>
<div class="detail">Combine the broth, salt, ginger, and chives in a large saucepan and bring to a rolling boil.
</div>
</div>
<div class="step">
<h3>2</h3>
<div class="ingredients">
<ul>
<li>
<div class="amount">
¾ cups
</div>
<div class="item">chicken broth</div>
<li>
<div class="amount">
1½ tbsp
</div>
<div class="item">cornstarch</div>
</ul>
</div>
<div class="detail">In a small mixing bowl, stir the broth and cornstarch together until smooth and set aside.
</div>
</div>
<div class="step">
<h3>3</h3>
<div class="ingredients">
<ul>
<li>
<div class="amount">
2
</div>
<div class="item">eggs</div>
<li>
<div class="amount">
1
</div>
<div class="item">egg yolk</div>
</ul>
</div>
<div class="detail">In a small mixing bowl, combine the eggs and extra egg yolk with a fork until fully combined. Then, drizzle a little egg at a time into the hot broth mixture. Once all of the egg has been added, gently stir in the cornstarch mixture a little at a time until the desired consistency is reached.
</div>
</div>
</section>
<section class="credits">
</section>
<section class="navigation">
<a href="../..">« Back</a>
</section>
</body>
</html
-9
View File
@@ -1,9 +0,0 @@
import sys
from http.server import HTTPServer
if __name__ == "__main__":
server = sys.argv[1]
port = sys.argv[0]
server = HTTPServer(("0.0.0.0",
+34
View File
@@ -0,0 +1,34 @@
title: Egg Drop Soup
timings:
prep: 20 minutes
icons: [gluten-free, low-carb, overnight, vegetarian]
servings: 4
description: >
This Egg Drop soup is born from a love of the soup and MANY trips to my favorite Chinese restaurant (asking them many
questions) resulting in this variation. Compare it to your local restaurant...The simplicity is the key. Soup can be
re-heated or frozen and re-heated.
steps:
- ingredients:
- { amount: 3.25, unit: cups, item: "chicken broth" }
- { amount: 0.125, unit: tsp, item: "ginger, powdered" }
- { amount: 2, unit: tbsp, item: "chives, fresh (diced)" }
- { amount: 0.25, unit: tsp, item: "salt" }
- { amount: 2, item: "eggs" }
- { amount: 1, item: "egg yolk" }
directions: >
Combine the broth, salt, ginger, and chives in a large saucepan and bring to a rolling boil.
- ingredients:
- { amount: 0.75, unit: cups, item: "chicken broth" }
- { amount: 1.5, unit: tbsp, item: "cornstarch" }
directions: >
In a small mixing bowl, stir the broth and cornstarch together until smooth and set aside.
- ingredients:
- { amount: 2, item: "eggs" }
- { amount: 1, item: "egg yolk" }
directions: >
In a small mixing bowl, combine the eggs and extra egg yolk with a fork until fully combined. Then, drizzle a
little egg at a time into the hot broth mixture. Once all of the egg has been added, gently stir in the
cornstarch mixture a little at a time until the desired consistency is reached.
credit:
- name: W.J. Cory
- url: https://www.allrecipes.com/recipe/45515/restaurant-style-egg-drop-soup
Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB