-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipe.html
90 lines (76 loc) · 2.32 KB
/
recipe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Housewives Recepies</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="row header-background">
<div class="row navi-background">
<div class="navi container">
<div class="header-welcome">
<a>Logout</a>
</div>
<div class="header-middle">
<a>My Recipes</a>
<a>Write Recipe</a>
</div>
<div class="header-search">
<input type="text" placeholder="Search for a recipe..." class="search-input" /><a class="search-btn">Go</a>
</div>
</div>
</div>
<div class="container">
<div class="header-name">
HOUSEWIVES RECIPES
</div>
</div>
</div>
</header>
<div class="container">
<div class="col-md-3" >
<h2>Categories</h2>
<hr/>
<ul>
<li>Holiday</li>
<li>Pie</li>
<li>Main Dish</li>
<li>Desert</li>
<li>Fish</li>
<li>Chicken</li>
<li>Asian</li>
<li>Traditional</li>
</ul>
</div>
<div class="col-md-9 border-round">
<h2>{{recipe.title}}</h2>
<div class="recipe-video">
<!-- YOUTUBE EMBED -->
</div>
<div class="recipe-text">
<div class="recipe-ingredients">
<h4>Ingredients:</h4>
<p> {{ recipe.ingredients }} </p>
</div>
<div class="recipe-description">
<h4>Description:</h4>
<p> {{recipe.description}} </p>
</div>
</div>
<button class="btn"> Save to my recipes </button>
{{ INCLUDE RECEPIE RATE }}
{{ INCLUDE FACEBOOK COMMENTS }}
</div>
</div>
</body>
</html>