-
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
590a232
commit e55f680
Showing
2 changed files
with
75 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,66 @@ | ||
<!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-weekday.html"); | ||
}); | ||
</script> | ||
|
||
<head> | ||
<title>Sausage and rice</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>Sausage and rice</h1> | ||
<p>One pot wonder.</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="sample-text"> | ||
</div> | ||
<div class="col-sm-6"> | ||
<h3>Ingredients</h3> | ||
<ul> | ||
<li>2 diced onions</li> | ||
<li>3 crushed cloves of garlic</li> | ||
<li>500g Pork sausage</li> | ||
<li>1 red pepper</li> | ||
<li>Zucchini or broccoli</li> | ||
<li>Baby tomatoes</li> | ||
<li>1 mug of rice (about 90% full)</li> | ||
</ul> | ||
<ol> | ||
<h3>Instructions</h3> | ||
<li>Fry up the diced onion and chopped garlic in some olive oil.</li> | ||
<li>Pop the rice on to cook separately.</li> | ||
<li>Add the sausages at this point to fry in the mix, or do them separately in the airfryer and add at the end.</li> | ||
<li>Chop the red pepper and add to the mix, along with chopped green veg and the baby tomatoes.</li> | ||
<li>Cut the sausage into discs, and add them when there's about 5 minutes left to go on the frying time.</li> | ||
<li>Finally, add in the rice and mix thoroughly.</li> | ||
</ol> | ||
<p> | ||
Serves 4. | ||
</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