-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c90d0cf
commit d93921a
Showing
2 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<script src="https://code.jquery.com/jquery-1.10.2.js"></script> | ||
<script> | ||
$(function () { | ||
$("#header").load("../../../includes/recipe-header.html"); | ||
$("#footer").load("../../../includes/footer.html"); | ||
$("#navbar").load("navbar-treats.html"); | ||
}); | ||
</script> | ||
|
||
<head> | ||
<title>Lemon poppyseed muffins</title> | ||
<meta charset="utf-8"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="../../../favicon_io/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="../../../favicon_io/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="../../../favicon_io/favicon-16x16.png"> | ||
<link rel="manifest" href="../../../favicon_io/site.webmanifest"> | ||
<div id="header"></div> | ||
<link rel="stylesheet" href="../../../main.css"> | ||
</head> | ||
|
||
<body> | ||
<div id="navbar"></div> | ||
<div class="jumbotron text-center bg-light"> | ||
<h1>Lemon poppyseed muffins</h1> | ||
<p>Happy birthday to me</p> | ||
</div> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-sm-6"> | ||
<img class="img-fluid rounded" style="float:center" src="../../../images/placeholder.jpg" | ||
alt="iced-cupcakes"> | ||
</div> | ||
<div class="col-sm-6"> | ||
<h3>Ingredients</h3> | ||
|
||
<h5>Cupcakes:</h5> | ||
<ul> | ||
<li>2 ¼ cups cake flour (313g)</li> | ||
<li>2 tsp baking powder (8g)</li> | ||
<li>¼ tsp bicarbonate of soda (2g)</li> | ||
<li>¼ tsp kosher salt (2g)</li> | ||
<li>2 Tbsp poppy seeds (23g)</li> | ||
<li>1 cup sugar (186g)</li> | ||
<li>2 Tbsp lemon zest (6g)</li> | ||
<li>1 cup whole milk greek yoghurt (245g)</li> | ||
<li>⅓ cup whole milk (78mL)</li> | ||
<li>½ cup unsalted butter melted (113g)</li> | ||
<li>2 large eggs (110g)</li> | ||
<li>1 Tbsp fresh lemon juice (15mL)</li> | ||
<li>1 tsp vanilla extract (5mL)</li> | ||
</ul> | ||
|
||
<h5>Lemon glaze:</h5> | ||
<ul> | ||
<li>½ cup powdered sugar (60g)</li> | ||
<li>1 Tbsp fresh lemon juice (15mL)</li> | ||
</ul> | ||
|
||
<h3>Instructions</h3> | ||
<h5>Cupcakes:</h5> | ||
<ol> | ||
<li>Preheat oven to 200C and line muffin tin with paper liners.</li> | ||
<li>In the largest bowl you'll use, sift together the flour, | ||
baking powder and bicarbonate of soda. | ||
Then add the salt and poppy seeds, and whisk to mix in.</li> | ||
<li>In a separate large bowl, mix together the sugar and lemon zest by rubbing the zest into the sugar. | ||
Add the yoghurt, milk, melted butter, eggs, lemon juice and vanilla and whisk until smooth.</li> | ||
<li>Pour the wet ingredient mix into the flour mix and fold together until the thick batter is just combined. | ||
Divide batter among the 12 liners.</li> | ||
<li>Bake for 15-17 minutes, or until golden brown and cooked through (a cake tester should come out with only a few crumbs. | ||
Cool in the pan for 10 minutes, then remove and finishing cooling on a rack).</li> | ||
<li>For the glaze, mix together the sugar and lemon juice and drizzle over the muffins until you're happy with how they look.</li> | ||
</ol> | ||
<p> | ||
<i>Inspired by <a href="https://preppykitchen.com/lemon-poppy-seed-muffins/">this | ||
recipe.</a></i> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
<div id="footer"></div> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters