-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-recipe.html
547 lines (523 loc) · 27.6 KB
/
single-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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipes</title>
<link rel="stylesheet" href="fontawesome/css/all.min.css"> <!-- https://fontawesome.com/ -->
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<!-- https://fonts.google.com/ -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header class="mc-header" id="mc-header">
<div class="mc-header-wrapper">
<button class="navbar-toggler" type="button" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
<div class="mc-site-header">
<a href="index.html" class="mb-3 mx-auto site-logo">
<img src="img/logo.png" alt="Logo" width="70px">
</a>
<h1 class="text-center site-title">Lara<span class="fw-light">Recipes</span></h1>
</div>
<nav class="mc-nav" id="mc-nav">
<ul>
<li class="mc-nav-item"><a href="index.html" class="mc-nav-link">
<i class="fas fa-carrot"></i>
Home
</a></li>
<li class="mc-nav-item"><a href="categories.html" class="mc-nav-link">
<i class="fas fa-cubes-stacked"></i>
Categories
</a></li>
<li class="mc-nav-item"><a href="single-category.html" class="mc-nav-link">
<i class="fas fa-cubes-stacked"></i>
Single Category
</a></li>
<li class="mc-nav-item active"><a href="single-recipe.html" class="mc-nav-link">
<i class="fas fa-bowl-food"></i>
Single Recipe
</a></li>
<li class="mc-nav-item"><a href="about.html" class="mc-nav-link">
<i class="fas fa-lemon"></i>
About Us
</a></li>
<li class="mc-nav-item"><a href="contact.html" class="mc-nav-link">
<i class="fas fa-utensils"></i>
Contact Us
</a></li>
</ul>
</nav>
<div class="mc-mb-65">
<a href="https://x.com/mkwsra" class="mc-social-link">
<i class="fab fa-x-twitter mc-social-icon"></i>
</a>
<a href="https://linkedin.com/in/mkwsra" class="mc-social-link">
<i class="fab fa-linkedin-in mc-social-icon"></i>
</a>
<a rel="nofollow" href="https://fb.com/mkwsra" class="mc-social-link">
<i class="fab fa-facebook-f mc-social-icon"></i>
</a>
<a href="https://instagram.com/multicaret" class="mc-social-link">
<i class="fab fa-instagram mc-social-icon"></i>
</a>
</div>
<p class="pr-5 text-white">
Lara Recipes a demo of a Laravel tutorial created by
<a href="https://mkwsra.com" class="text-dark">Mo Kawsara</a>
using the Xtra Blog html5 theme as a
foundation, this theme got tweaked for the purposes of this tutorial.
</p>
<p class="mc-mb-80 text-white">If you liked this tutorial, consider helping me out by sharing this video series
with others and perhaps by
liking my <a href="https://www.youtube.com/@multi-caret" target="_blank" class="text-dark">YouTube
videos</a></p>
</div>
</header>
<div class="container-fluid">
<main class="mc-main">
<div class="px-4 mb-5 text-center border-bottom">
<div class="col-lg-6 mx-auto">
</div>
<div class="overflow-hidden" style="max-height: 45vh;">
<div class="container px-5">
<span class="position-absolute mc-new-badge">
<i class="fas fa-certificate"></i>
Featured Recipe
</span>
<img src="img/1.jpeg" class="img-fluid border rounded-3 shadow-lg mb-4"
alt="Example image" width="900" height="500" loading="lazy">
</div>
</div>
</div>
<div class="row mc-row">
<div class="col-lg-8 mc-post-col">
<div class="mc-post-full">
<div class="d-flex justify-content-between mb-4">
<div>
<i class="fas fa-book-open-reader"></i>
234 views
</div>
<div>
Published in
<a href="#!">Quick & Simple</a>
</div>
</div>
<div class="mb-4">
<h2 class="display-5 fw-bold text-body-emphasis mc-color-primary mc2-post-title mt-4">
Peanut Butter and Jelly
</h2>
<div class="recipe-features mb-3">
<span class="badge text-bg-success">
<i class="fas fa-carrot me-1"></i>
Vegetarian
</span>
<span class="badge text-bg-danger">
<i class="fas fa-pepper-hot me-1"></i>
Spicy
</span>
<span class="badge text-bg-warning">
<i class="fas fa-drumstick-bite me-1"></i>
High Protein
</span>
<span class="badge text-bg-success">
<i class="fas fa-apple-whole me-1"></i>
Vegan
</span>
<span class="badge text-bg-dark">
<i class="fas fa-fire me-1"></i>
Low Carbs
</span>
<span class="badge text-bg-info">
<i class="fas fa-fish me-1"></i>
Pescatarian
</span>
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam architecto cumque dolore
eius eos et explicabo fugiat hic laborum libero molestiae officiis omnis optio quasi
repellendus, saepe, tempora totam ullam?
</p>
<div class="card card-body pb-0 align-items-center rounded-3 border my-4 sha2dow">
<div class="container">
<div class="row align-items-md-center">
<div class="col d-flex flex-column">
<p class="mb-0 text-dark">
<i class="fas fa-utensils fa-xs"></i>
Servings
</p>
<p class="text-body-secondary">4-5 ppl</p>
</div>
<div class="col d-flex flex-column">
<p class="mb-0 text-dark">
<i class="fas fa-hourglass-half fa-xs"></i>
Prepare Time
</p>
<p class="text-body-secondary">12 min.</p>
</div>
<div class="col d-flex flex-column">
<p class="mb-0 text-dark">
<i class="fas fa-clock fa-xs"></i>
Cooking Time
</p>
<p class="text-body-secondary">1 hr 15 min</p>
</div>
</div>
</div>
</div>
<div class="btn-group w-100 mb-4">
<a href="#instructions" class="btn btn-outline-dark">Instructions</a>
<a href="#description" class="btn btn-outline-dark">Recipe</a>
<a href="#video" class="btn btn-outline-dark">Video</a>
<span class="btn btn-outline-dark bg-dark-subtle text-muted" data-bs-toggle="tooltip"
data-bs-title="Not Available">
<i>Video</i>
</span>
<a href="#notes" class="btn btn-outline-dark">Notes</a>
</div>
<h3 class="border-bottom mt-4" id="instructions">
Instructions
</h3>
<p>
This is a description of the video post. You can also have an image instead of
the video. You can free download
<a rel="nofollow" href="#!" target="_blank">Lara Recipes Template</a>
from TemplateMo website. Phasellus maximus quis est sit amet maximus. Vestibulum vel rutrum
lorem, ac sodales augue. Aliquam erat volutpat. Duis lectus orci, blandit in arcu
est, elementum tincidunt lectus. Praesent vel justo tempor, varius lacus a,
pharetra lacus. </p>
<p>
Duis pretium efficitur nunc. Mauris vehicula nibh nisi. Curabitur gravida neque
dignissim, aliquet nulla sed, condimentum nulla. Pellentesque id venenatis
quam, id cursus velit. Fusce semper tortor ac metus iaculis varius. Praesent
aliquam ex vel lectus ornare tristique. Nunc et eros quis enim feugiat tincidunt
et vitae dui.
</p>
<h3 class="border-bottom mt-4" id="description">
Recipe
</h3>
<p>
Duis pretium efficitur nunc. Mauris vehicula nibh nisi. Curabitur gravida neque
dignissim, aliquet nulla sed, condimentum nulla. Pellentesque id venenatis
quam, id cursus velit. Fusce semper tortor ac metus iaculis varius. Praesent
aliquam ex vel lectus ornare tristique. Nunc et eros quis enim feugiat tincidunt
et vitae dui.
</p>
<h3 class="border-bottom mt-4" id="video">
Video
</h3>
<iframe width="100%" height="400"
src="https://www.youtube.com/embed/-hCYXJHYCW8?si=6rr70gk_EDIbDlbR"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
<h3 class="border-bottom mt-4" id="notes">
Notes
</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut error est in molestiae
necessitatibus odit suscipit vero. Asperiores assumenda culpa, cum est exercitationem, ipsam
ipsum molestias odio quaerat sunt veniam.
</p>
<div class="d-flex justify-content-start mt-5 mb-4">
<span class="badge rounded-pill me-2 text-bg-light">Baked</span>
<span class="badge rounded-pill me-2 text-bg-light">Juicy</span>
<span class="badge rounded-pill me-2 text-bg-light">Western</span>
</div>
</div>
<!-- Comments -->
<!--<div>
<h2 class="mc-color-primary mc-post-title">Comments</h2>
<hr class="mc-hr-primary mc-mb-45">
<div class="mc-comment mc-mb-45">
<figure class="mc-comment-figure">
<img src="img/mk.jpg" alt="Image" width="128" class="mb-2 rounded-circle img-thumbnail">
<figcaption class="mc-color-primary text-center">Mo Kawsara</figcaption>
</figure>
<div>
<p>
Praesent aliquam ex vel lectus ornare tritique. Nunc et eros
quis enim feugiat tincidunt et vitae dui. Nullam consectetur
justo ac ex laoreet rhoncus. Nunc id leo pretium, faucibus
sapien vel, euismod turpis.
</p>
<div class="d-flex justify-content-between">
<a href="#" class="mc-color-primary">REPLY</a>
<span class="mc-color-primary">June 14, 2023</span>
</div>
</div>
</div>
<div class="mc-comment-reply mc-mb-45">
<hr>
<div class="mc-comment">
<figure class="mc-comment-figure">
<img src="img/comment-2.jpg" width="128" alt="Image" class="mb-2 rounded-circle img-thumbnail">
<figcaption class="mc-color-primary text-center">Sara A</figcaption>
</figure>
<p>
Nunc et eros quis enim feugiat tincidunt et vitae dui.
Nullam consectetur justo ac ex laoreet rhoncus. Nunc
id leo pretium, faucibus sapien vel, euismod turpis.
</p>
</div>
<span class="d-block text-right mc-color-primary">June 21, 2023</span>
</div>
<form action="" class="mb-5 mc-comment-form">
<h2 class="mc-color-primary mc-post-title mb-4">Your comment</h2>
<div class="mb-4">
<input class="form-control" name="name" type="text">
</div>
<div class="mb-4">
<input class="form-control" name="email" type="text">
</div>
<div class="mb-4">
<textarea class="form-control" name="message" rows="6"></textarea>
</div>
<div class="text-right">
<button class="mc-btn mc-btn-primary mc-btn-small">Submit</button>
</div>
</form>
</div>-->
<div class="my-5">
<h2 class="pb-2 border-bottom">Hand-Picked Recipes</h2>
<div class="row">
<div class="col">
<a href="#!">
<div class="card card-cover h-100 overflow-hidden text-bg-dark rounded-3 shadow-lg img-overlay"
style="background-image: url('img/5.jpeg');background-size: cover;">
<div class="d-flex flex-column z-1 h-100 p-5 pb-3 text-white">
<h3 class="pt-5 mt-5 mb-4 lh-1 fw-bold">Mac & Cheese</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="#!">
<div class="card card-cover h-100 overflow-hidden text-bg-dark rounded-3 shadow-lg img-overlay"
style="background-image: url('img/1.jpeg');background-size: cover;">
<div class="d-flex flex-column z-1 h-100 p-5 pb-3 text-white">
<h3 class="pt-5 mt-5 mb-4 lh-1 fw-bold">Peanut Butter and Jelly</h3>
</div>
</div>
</a>
</div>
<div class="col">
<a href="#!">
<div class="card card-cover h-100 overflow-hidden text-bg-dark rounded-3 shadow-lg img-overlay"
style="background-image: url('img/2.jpeg');background-size: cover;">
<div class="d-flex flex-column z-1 h-100 p-5 pb-3 text-white">
<h3 class="pt-5 mt-5 mb-4 lh-1 fw-bold">Bufallo Wings</h3>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<aside class="col-lg-4 mc-aside-col">
<div class="mc-post-sidebar">
<!-- Search form -->
<div class="row mc-row">
<div class="col-12">
<form method="GET" class="form-inline mc-mb-40 mc-search-form">
<input class="form-control mc-search-input" name="query" type="text"
placeholder="Search..."
aria-label="Search">
<button class="mc-search-button" type="submit">
<i class="fas fa-search mc-search-icon" aria-hidden="true"></i>
</button>
</form>
</div>
</div>
<hr class="mb-3 mc-hr-primary">
<h2 class="mb-4 mc-post-title">Categories</h2>
<ul class="mc-mb-75 pl-5 mc-category-list">
<li>
<a href="#" class="mc-color-primary">
Cheesecakes
<span class="mc-color-dark">(21 recipes)</span>
</a>
</li>
<li>
<a href="#" class="mc-color-primary">
Cupcakes & Muffins
<span class="mc-color-dark">(22 recipes)</span>
</a>
</li>
<li>
<a href="#" class="mc-color-primary">
Cookies
<span class="mc-color-dark">(51 recipes)</span>
</a>
</li>
<li>
<a href="#" class="mc-color-primary">
Puddings & Cosy Desserts
<span class="mc-color-dark">(52 recipes)</span>
</a>
</li>
<li>
<a href="#" class="mc-color-primary">
Bite Size
<span class="mc-color-dark">(23 recipes)</span>
</a>
</li>
<li>
<a href="#" class="mc-color-primary">
Pies
<span class="mc-color-dark">(26 recipes)</span>
</a>
</li>
</ul>
<hr class="mb-3 mc-hr-primary">
<h2 class="mb-4 mc-post-title">Related Recipes</h2>
<a href="#" class="d-block mc-mb-40">
<figure>
<img src="img/2.jpeg" alt="Image" class="mb-3 img-fluid rounded-3 shadow-lg">
<figcaption class="mc-color-primary">Duis mollis diam nec ex viverra scelerisque a sit
</figcaption>
</figure>
</a>
<a href="#" class="d-block mc-mb-40">
<figure>
<img src="img/6.jpeg" alt="Image" class="mb-3 img-fluid rounded-3 shadow-lg">
<figcaption class="mc-color-primary">Integer quis lectus eget justo ullamcorper
ullamcorper
</figcaption>
</figure>
</a>
<a href="#" class="d-block mc-mb-40">
<figure>
<img src="img/4.jpeg" alt="Image" class="mb-3 img-fluid rounded-3 shadow-lg">
<figcaption class="mc-color-primary">Nam lobortis nunc sed faucibus commodo</figcaption>
</figure>
</a>
</div>
</aside>
</div>
</main>
<footer class="mc-main pt-5 mt-5 border-top">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-5">
<div class="col">
<a href="#!"
class="d-flex align-items-center mb-3 link-body-emphasis text-decoration-none site-logo">
<div class="mc-site-header">
<img src="img/logo.png" alt="Logo" width="70px">
<h3 class="text-center site-title">
Lara<span class="fw-light">Recipes</span>
</h3>
</div>
</a>
<p class="text-body-secondary">
Laravel Tutorial by <a href="https://x.com/mkwsra" target="_blank">
Mo Kawsara
</a>
</p>
</div>
<div class="col mb-3">
</div>
<div class="col mb-3">
<h5>Categories</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0 text-body-secondary">
Category 1 <small>(12 recipes)</small>
</a>
</li>
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0 text-body-secondary">
Category 2 <small>(7 recipes)</small>
</a>
</li>
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0 text-body-secondary">
Category 3 <small>(6 recipes)</small>
</a>
</li>
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0 text-body-secondary">
Category 4 <small>(6 recipes)</small>
</a>
</li>
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0 text-body-secondary">
Category 5 <small>(4 recipes)</small>
</a>
</li>
</ul>
</div>
<div class="col mb-3">
<h5>Featured Recipes</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0 text-body-secondary">
Recipe title 1
</a>
</li>
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0 text-body-secondary">
Recipe title 2
</a>
</li>
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0 text-body-secondary">
Recipe title 3
</a>
</li>
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0 text-body-secondary">
Recipe title 4
</a>
</li>
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0 text-body-secondary">
Recipe title 5
</a>
</li>
</ul>
</div>
<div class="col mb-3">
<h5>Useful Links</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Search
Categories</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Search
Recipes</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">Most Viewed
Recipe</a></li>
<li class="nav-item mb-2"><a href="faq.html" class="nav-link p-0 text-body-secondary">FAQs</a>
</li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-body-secondary">About</a></li>
</ul>
</div>
</div>
<ul class="nav justify-content-center border-bottom border-top mt-2">
<li class="nav-item"><a href="terms.html" class="nav-link px-2 text-body-secondary">Terms &
Conditions</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Privacy Policy</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Photo Usage Policy</a></li>
</ul>
<div class="row">
<div class="col-md-6 col-12 mc-color-gray">
Developed with 🤩️ by <a rel="nofollow" target="_parent" href="#!" class="mc-external-link">Put Your
Name
Here Dear Laravel Developer</a>
</div>
<div class="col-md-6 col-12 mc-copyright">
<p class="text-body-secondary">© 2023 Multicaret, Inc</p>
</div>
</div>
</footer>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/scripts.js"></script>
<script>
const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]')
const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl))
</script>
</body>
</html>