forked from codermahadi/videoBlog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
single_post.php
442 lines (393 loc) · 23.3 KB
/
single_post.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Title -->
<title>Vizew - Blog & Magazine HTML Template</title>
<!-- Favicon -->
<link rel="icon" href="assets/img/core-img/favicon.ico">
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Preloader -->
<div class="preloader d-flex align-items-center justify-content-center">
<div class="lds-ellipsis">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<?php include 'inc/navigation.php'; ?>
<!-- ##### Breadcrumb Area Start ##### -->
<div class="vizew-breadcrumb">
<div class="container">
<div class="row">
<div class="col-12">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#"><i class="fa fa-home" aria-hidden="true"></i> Home</a>
</li>
<li class="breadcrumb-item"><a href="#">Archives</a></li>
<li class="breadcrumb-item active" aria-current="page">Reunification of migrant toddlers</li>
</ol>
</nav>
</div>
</div>
</div>
</div>
<!-- ##### Breadcrumb Area End ##### -->
<!-- ##### Pager Area Start ##### -->
<div class="vizew-pager-area">
<div class="vizew-pager-prev">
<p>PREVIOUS ARTICLE</p>
<!-- Single Feature Post -->
<div class="single-feature-post video-post bg-img pager-article"
style="background-image: url(assets/img/bg-img/15.jpg);">
<!-- Post Content -->
<div class="post-content">
<a href="#" class="post-cata cata-sm cata-success">Sports</a>
<a href="video_post.php" class="post-title">Searching for the 'angel' who held me on Westminster
Bridge</a>
<div class="post-meta d-flex">
<a href="#"><i class="fa fa-comments-o" aria-hidden="true"></i> 18</a>
<a href="#"><i class="fa fa-eye" aria-hidden="true"></i> 32</a>
<a href="#"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 24</a>
</div>
</div>
<!-- Video Duration -->
<span class="video-duration">11.13</span>
</div>
</div>
<div class="vizew-pager-next">
<p>NEXT ARTICLE</p>
<!-- Single Feature Post -->
<div class="single-feature-post video-post bg-img pager-article"
style="background-image: url(assets/img/bg-img/14.jpg);">
<!-- Post Content -->
<div class="post-content">
<a href="#" class="post-cata cata-sm cata-business">Business</a>
<a href="video_post.php" class="post-title">Reunification of migrant toddlers, parents should be
completed Thursday</a>
<div class="post-meta d-flex">
<a href="#"><i class="fa fa-comments-o" aria-hidden="true"></i> 25</a>
<a href="#"><i class="fa fa-eye" aria-hidden="true"></i> 25</a>
<a href="#"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 25</a>
</div>
</div>
<!-- Video Duration -->
<span class="video-duration">06.59</span>
</div>
</div>
</div>
<!-- ##### Pager Area End ##### -->
<!-- ##### Post Details Area Start ##### -->
<section class="post-details-area mb-80">
<div class="container">
<div class="row">
<div class="col-12">
<div class="post-details-thumb mb-50">
<img src="assets/img/bg-img/34.jpg" alt="">
</div>
</div>
</div>
<div class="row justify-content-center">
<!-- Post Details Content Area -->
<div class="col-12 col-lg-8 col-xl-7">
<div class="post-details-content">
<!-- Blog Content -->
<div class="blog-content">
<!-- Post Content -->
<div class="post-content mt-0">
<a href="#" class="post-cata cata-sm cata-danger">Game</a>
<a href="single_post.php" class="post-title mb-2">Reunification of migrant toddlers, parents
should be completed Thursday</a>
<div class="d-flex justify-content-between mb-30">
<div class="post-meta d-flex align-items-center">
<a href="#" class="post-author">By Jane</a>
<i class="fa fa-circle" aria-hidden="true"></i>
<a href="#" class="post-date">Sep 08, 2018</a>
</div>
<div class="post-meta d-flex">
<a href="#"><i class="fa fa-comments-o" aria-hidden="true"></i> 32</a>
<a href="#"><i class="fa fa-eye" aria-hidden="true"></i> 42</a>
<a href="#"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 7</a>
</div>
</div>
</div>
<p>I love dals. All kinds of them but yellow moong dal is my go-to lentil when I am in need of
some easy comfort food. In this recipe I added suva or dill leaves to the classic moong dal
recipe for a twist. I like the simplicity of this recipe, just the dal, tomatoes and fresh
dill with simple seasoning. This recipe is without any onions and garlic. I love the aroma
of fresh dill and I think, in Indian food, we don’t really use dill as much as we can. Nine
out of ten times, the only green leaves sprinkled on a curry or a dal is fresh coriander and
while I love coriander too, dill adds a unique freshness and aroma to the dal. The delicate
feathery leaves of dill are also rich in Vitamin A, C and minerals like iron and
manganese.</p>
<p>Dals or lentils are packed with proteins and especially in a vegetarian diet, lentils are the
main source of protein. It is amazing how this humble yellow moong dal can be made into so
many recipes from a plain dal khichdi to mangodi ki sabzi to the traditional Indian desserts
like moong dal halwa.</p>
<blockquote class="vizew-blockquote mb-15">
<h5 class="blockquote-text">“If you’re going to try, go all the way. There is no other
feeling like that. You will be alone with the gods.”</h5>
<h6>Ollie Schneider - CEO Deercreative</h6>
</blockquote>
<p>Dals or lentils are packed with proteins and especially in a vegetarian diet, lentils are the
main source of protein. It is amazing how this humble yellow moong dal can be made into so
many recipes from a plain dal khichdi to mangodi ki sabzi to the traditional Indian desserts
like moong dal halwa. Fresh dill should be added only at the end of cooking, much like fresh
coriander leaves.</p>
<h4>Immediate Dividends</h4>
<ul class="unordered-list mb-0">
<li>Wash the dal in 3-4 changes of water and soak in room temperature water for 10 mins
while you finish the rest of preparation.
</li>
<li>Drain and pressure cook with salt, turmeric and water for 2 whistles.</li>
<li>Remove the cooker from heat and open only after all the steam has escaped on its own.
</li>
<li>While the dal is cooking, heat ghee in a pan. Add hing and cumin seeds.</li>
<li>When the seeds start to crackle, add ginger, and green chillies. Sauté for a minute.
</li>
<li>Add tomatoes and a little salt. Mix well. Cook for about 5 mins with occasional
stirring.
</li>
</ul>
<!-- Post Tags -->
<div class="post-tags mt-30">
<ul>
<li><a href="#">HealthFood</a></li>
<li><a href="#">Sport</a></li>
<li><a href="#">Game</a></li>
</ul>
</div>
<!-- Post Author -->
<div class="vizew-post-author d-flex align-items-center py-5">
<div class="post-author-thumb">
<img src="assets/img/bg-img/30.jpg" alt="">
</div>
<div class="post-author-desc pl-4">
<a href="#" class="author-name">Calantha Flower</a>
<p>Hello! My name is Nicolas Sarkozy. I’m a web designer and front-end web developer
with over fifteen years of professional.</p>
<div class="post-author-social-info">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-pinterest"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-dribbble"></i></a>
</div>
</div>
</div>
<!-- Related Post Area -->
<div class="related-post-area mt-5">
<!-- Section Title -->
<div class="section-heading style-2">
<h4>Related Post</h4>
<div class="line"></div>
</div>
<div class="row">
<!-- Single Blog Post -->
<div class="col-12 col-md-6">
<div class="single-post-area mb-50">
<!-- Post Thumbnail -->
<div class="post-thumbnail">
<img src="assets/img/bg-img/11.jpg" alt="">
<!-- Video Duration -->
<span class="video-duration">05.03</span>
</div>
<!-- Post Content -->
<div class="post-content">
<a href="#" class="post-cata cata-sm cata-success">Sports</a>
<a href="single_post.php" class="post-title">Warner Bros. Developing ‘The
accountant’ Sequel</a>
<div class="post-meta d-flex">
<a href="#"><i class="fa fa-comments-o" aria-hidden="true"></i> 22</a>
<a href="#"><i class="fa fa-eye" aria-hidden="true"></i> 16</a>
<a href="#"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 15</a>
</div>
</div>
</div>
</div>
<!-- Single Blog Post -->
<div class="col-12 col-md-6">
<div class="single-post-area mb-50">
<!-- Post Thumbnail -->
<div class="post-thumbnail">
<img src="assets/img/bg-img/12.jpg" alt="">
<!-- Video Duration -->
<span class="video-duration">05.03</span>
</div>
<!-- Post Content -->
<div class="post-content">
<a href="#" class="post-cata cata-sm cata-danger">Game</a>
<a href="single_post.php" class="post-title">Searching for the 'angel' who
held me on Westminste</a>
<div class="post-meta d-flex">
<a href="#"><i class="fa fa-comments-o" aria-hidden="true"></i> 28</a>
<a href="#"><i class="fa fa-eye" aria-hidden="true"></i> 17</a>
<a href="#"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i> 22</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Comment Area Start -->
<div class="comment_area clearfix mb-50">
<!-- Section Title -->
<div class="section-heading style-2">
<h4>Comment</h4>
<div class="line"></div>
</div>
<ul>
<!-- Single Comment Area -->
<li class="single_comment_area">
<!-- Comment Content -->
<div class="comment-content d-flex">
<!-- Comment Author -->
<div class="comment-author">
<img src="assets/img/bg-img/31.jpg" alt="author">
</div>
<!-- Comment Meta -->
<div class="comment-meta">
<a href="#" class="comment-date">27 Aug 2019</a>
<h6>Tomas Mandy</h6>
<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet,
consectetur, adipisci velit, sed quia non numquam eius</p>
<div class="d-flex align-items-center">
<a href="#" class="like">like</a>
<a href="#" class="reply">Reply</a>
</div>
</div>
</div>
<ol class="children">
<li class="single_comment_area">
<!-- Comment Content -->
<div class="comment-content d-flex">
<!-- Comment Author -->
<div class="comment-author">
<img src="assets/img/bg-img/32.jpg" alt="author">
</div>
<!-- Comment Meta -->
<div class="comment-meta">
<a href="#" class="comment-date">27 Aug 2019</a>
<h6>Britney Millner</h6>
<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet,
consectetur, adipisci velit, sed quia non numquam eius</p>
<div class="d-flex align-items-center">
<a href="#" class="like">like</a>
<a href="#" class="reply">Reply</a>
</div>
</div>
</div>
</li>
</ol>
</li>
<!-- Single Comment Area -->
<li class="single_comment_area">
<!-- Comment Content -->
<div class="comment-content d-flex">
<!-- Comment Author -->
<div class="comment-author">
<img src="assets/img/bg-img/33.jpg" alt="author">
</div>
<!-- Comment Meta -->
<div class="comment-meta">
<a href="#" class="comment-date">27 Aug 2019</a>
<h6>Simon Downey</h6>
<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet,
consectetur, adipisci velit, sed quia non numquam eius</p>
<div class="d-flex align-items-center">
<a href="#" class="like">like</a>
<a href="#" class="reply">Reply</a>
</div>
</div>
</div>
</li>
</ul>
</div>
<!-- Post A Comment Area -->
<div class="post-a-comment-area">
<!-- Section Title -->
<div class="section-heading style-2">
<h4>Leave a reply</h4>
<div class="line"></div>
</div>
<!-- Reply Form -->
<div class="contact-form-area">
<form action="#" method="post">
<div class="row">
<div class="col-12 col-lg-6">
<input type="text" class="form-control" id="name" placeholder="Your Name*">
</div>
<div class="col-12 col-lg-6">
<input type="email" class="form-control" id="email"
placeholder="Your Email*">
</div>
<div class="col-12">
<textarea name="message" class="form-control" id="message"
placeholder="Message*"></textarea>
</div>
<div class="col-12">
<button class="btn vizew-btn mt-30" type="submit">Submit Comment</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Sidebar Widget -->
<div class="col-12 col-md-6 col-lg-4 col-xl-3">
<div class="sidebar-area">
<!-- ***** Single Widget ***** -->
<div class="single-widget share-post-widget mb-50">
<p>Share This Post</p>
<a href="#" class="facebook"><i class="fa fa-facebook" aria-hidden="true"></i> Facebook</a>
<a href="#" class="twitter"><i class="fa fa-twitter" aria-hidden="true"></i> Twitter</a>
<a href="#" class="google"><i class="fa fa-google" aria-hidden="true"></i> Google+</a>
</div>
<!-- ***** Single Widget ***** -->
<div class="single-widget p-0 author-widget">
<div class="p-4">
<img class="author-avatar" src="assets/img/bg-img/30.jpg" alt="">
<a href="#" class="author-name">Chris Hemsworth</a>
<div class="author-social-info">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-pinterest"></i></a>
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing</p>
</div>
<div class="authors--meta-data d-flex">
<p>Posted<span class="counter">80</span></p>
<p>Comments<span class="counter">230</span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ##### Post Details Area End ##### -->
<?php include 'inc/footer.php'; ?>
<!-- ##### All Javascript Script ##### -->
<!-- jQuery-2.2.4 js -->
<script src="assets/js/jquery/jquery-2.2.4.min.js"></script>
<!-- Popper js -->
<script src="assets/js/bootstrap/popper.min.js"></script>
<!-- Bootstrap js -->
<script src="assets/js/bootstrap/bootstrap.min.js"></script>
<!-- All Plugins js -->
<script src="assets/js/plugins/plugins.js"></script>
<!-- Active js -->
<script src="assets/js/active.js"></script>
</body>
</html>