-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathblog.php
More file actions
545 lines (454 loc) · 25.2 KB
/
Copy pathblog.php
File metadata and controls
545 lines (454 loc) · 25.2 KB
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Blogs | E-Cell</title>
<link href="css/overlay.css" rel="stylesheet">
<link href="css/global/global.css" rel="stylesheet">
<!-- Favicon -->
<link rel="shortcut icon" href="img/icon.png" type="image/x-icon">
<link rel="apple-touch-icon" href="img/icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!--Local stylesheet-->
<link rel="stylesheet" href="blog/css/blog_homepage.css">
<link rel="stylesheet" href="blog/css/share.css">
<link rel="stylesheet" href="css/header.css">
<!--<link rel="stylesheet" href="css/footer-style.css">-->
<link rel="stylesheet" href="blog/css/header.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="blog/css/footer.css">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" />
</head>
<body>
<header>
<!--<?php /*include 'header.php';*/
?>-->
<!------------------------------------Navbar Start------------------------------------>
<nav class="navbar navbar-dark navbar-expand-sm">
<div class="container">
<a class="navbar-brand ml-0" href="index.php"><img src="img/logo-ecell.png" alt="Ecell Logo" height="60" width="120"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#Navbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="Navbar">
<ul class="navbar-nav list-unstyled ml-auto">
<li class="nav-item px-3"><a class="nav-link" href="index.php">Home</a></li>
<!--<li class="nav-item px-3"><a class="nav-link" href="/#about">About </a></li>
<li class="nav-item px-3"><a class="nav-link" href="/#flagship">Events </a></li>
<li class="nav-item px-3"><a class="nav-link" href="https://startupconclave.ecellvnit.org">Startup Conclave </a></li>
<li class="nav-item px-3"><a class="nav-link" href="spons.php">Sponsors </a></li>-->
<li class="nav-item active px-3"><a class="nav-link" href="#">Blog</a></li>
<li class="nav-item px-3"><a class="nav-link" href="team.php">Team</a></li>
<li class="nav-item px-3"><a class="nav-link" href="https://www.ecellvnit.org/#contact">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
<!----------------------------Navbar End-------------------------------------->
</header>
<!------------------------------------Carousel Start------------------------------------>
<!--Carousel Wrapper-->
<div id="carousel-example-2" class="carousel slide carousel-fade" data-ride="carousel">
<!--Indicators-->
<ol class="carousel-indicators">
<li data-target="#carousel-example-2" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-2" data-slide-to="1"></li>
<li data-target="#carousel-example-2" data-slide-to="2"></li>
</ol>
<!--/.Indicators-->
<!--Slides-->
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="view">
<!-- <img class="d-block w-100" src="https://mdbootstrap.com/img/Photos/Slides/img%20(68).jpg" alt="First slide"> -->
<img class="d-block w-100" src="blog/img/image 1-05 (1).jpg" alt="First slide">
<div class="mask rgba-black-light"></div>
</div>
<div class="carousel-caption">
<h3 class="h3-responsive ">E-Cell Blogs</h3>
<p class="text-center para">E-Cell VNIT's very own blog. We cover a wide range of topics such as ideation, investments, journeys of famous startups and everything else related to entrepreneurship</p>
</div>
</div>
<div class="carousel-item ">
<!--Mask color-->
<div class="view">
<!-- <img class="d-block w-100" src="https://mdbootstrap.com/img/Photos/Slides/img%20(6).jpg" alt="Second slide"> -->
<a href="blog/Skill-to-success.php">
<img class="d-block w-100" src="blog/img/carousel image 2-05.jpg" alt="Second slide">
</a>
<div class="mask rgba-black-strong"></div>
</div>
<div class="carousel-caption c1">
<h3 class="h3-responsive text-left mt-0"><a href="blog/Skill-to-success.php">Skill to Success</a></h3>
<p class = "text-left mt-1 d-lg-block d-md-block d-sm-none desktop-only">The most important skill to succeed in life is 'attitude' as can be seen in the case of Kambli and Tendulkar. Even though Kambli had a more impressive start to his career it was Tendulkar who eventually ended up making his name.It's the right mindset that brings the right attitude which eventually leads to success</br>
<a href = "blog/Skill-to-success.php">Read more</a></p>
<p class = "text-left mt-1 d-none d-sm-block d-md-none d-xl-none mobile-only">The most important skill to succeed in life is 'attitude' as can be seen in the case of Kambli and Tendulkar. Even though Kambli had a more impressive start to his career it was Tendulkar...</br>
<a href = "blog/Skill-to-success.php">Read more</a></p>
</div>
</div>
<div class="carousel-item">
<!--Mask color-->
<div class="view">
<!-- <img class="d-block w-100" src="https://mdbootstrap.com/img/Photos/Slides/img%20(9).jpg" alt="Third slide"> -->
<a href="blog/techno-and-e-ship.php">
<img class="d-block w-100" src="blog/img/carousel 3-05.jpg" alt="Third slide">
</a>
<div class="mask rgba-black-slight"></div>
</div>
<div class="carousel-caption c2">
<h3 class="h3-responsive text-left mt-0"><a href="blog/techno-and-e-ship.php">Technology and Entrepreneurship</a></h3>
<p class = "text-left mt-1 d-lg-block d-md-block d-sm-none desktop-only">Let us decode this, starting it raw. Technology is defined as the application of scientific knowledge for practical purposes in industries. Entrepreneurship is defined as the process of designing, launching and running a new business. Two different worlds.</br>
<a href = "blog/techno-and-e-ship.php">Read more</a></p>
<p class = "text-left mt-1 d-lg-none d-sm-block d-md-none d-xl-none mobile-only">Let us decode this, starting it raw. Technology is defined as the application of scientific knowledge for practical purposes in industries. Entrepreneurship is defined as the process of...</br>
<a href = "blog/techno-and-e-ship.php">Read more</a></p>
</div>
</div>
</div>
</div>
<!--/.Slides-->
<!--Controls-->
<!--<a class="carousel-control-prev" href="#carousel-example-2" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carousel-example-2" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>-->
<!--/.Controls-->
</div>
<!--/.Carousel Wrapper-->
<!-----------------------------------Carousel END------------------------------------>
<!------------------------------------Blog cards START------------------------------------>
<div class="blog-card-container">
<div class="blog-card jumbotron p-4 p-md-5 text-black rounded bg-light">
<div class="row">
<div class="col-md-5">
<!-- <img class="blog-image" alt="cat" src="https://cdn.pixabay.com/photo/2017/11/09/21/41/cat-2934720_960_720.jpg"> -->
<img class="blog-image" alt="cat" src="blog/img/b-1.jpg">
</div>
<div class="blog-desc col-md-7 ml-auto my-auto pt-lg-0 pt-4">
<div class="row">
<div class="col-10">
<figure class="article-footer">
<img class="profile-photo" src="https://media-exp1.licdn.com/dms/image/C4E03AQHB1Dn-bE3b-w/profile-displayphoto-shrink_200_200/0?e=1608163200&v=beta&t=yFjsnGO5h24Yy_DIy8D00B5JJEaUB1wCLVoGMC17lgI" alt="author-Michelle's profile">
<figcaption>
<p>Rashmi Hegde<br>
<time datetime="2020-06-28">18th October, 2020</time>
</p>
</figcaption>
</figure>
</div>
<div class="col-2 share-button">
<button type="button" class="btn btn-outline-dark" data-toggle="modal" data-target="#share_post">
<i class="fas fa-share"></i>
</button>
</div>
</div>
<!---------------------------- SHARE ICON Start ------------------------------->
<!-- Button trigger modal -->
<div class="modal fade" id="share_post" tabindex="-1" aria-labelledby="share_post_label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-body">
<div class="sharable-content">
<a href="#" class="facebook-btn">
<i class="fab fa-facebook"></i>
</a>
<a href="#" class="twitter-btn">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="pinterest-btn">
<i class="fab fa-pinterest"></i>
</a>
<a href="#" class="linkedin-btn">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="whatsapp-btn">
<i class="fab fa-whatsapp"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!------------------------------Share Icon End---------------------------->
<a href="blog/techno-and-e-ship.php">
<h1 class="display-4">Technology and Entrepreneurship</h1>
</a>
<p class="lead my-3">Let us decode this, starting it raw. Technology is defined as the application of scientific knowledge for practical purposes in industries. Entrepreneurship is defined as the process of designing, launching and running a new business. Two different worlds...</p>
</div>
</div>
</div>
<div class="blog-card jumbotron p-4 p-md-5 text-black rounded bg-light">
<div class="row">
<div class="col-md-5">
<!-- <img class="blog-image" alt="cat and dog" src="https://cdn.pixabay.com/photo/2016/01/19/17/41/friends-1149841_960_720.jpg"> -->
<img class="blog-image" alt="cat and dog" src="blog/img/b-2.jpg">
</div>
<div class="blog-desc col-md-7 ml-auto my-auto pt-lg-0 pt-4">
<div class="row">
<div class="col-10">
<figure class="article-footer">
<img class="profile-photo" src="https://media-exp1.licdn.com/dms/image/C5103AQHc78ZH8kPaUA/profile-displayphoto-shrink_200_200/0?e=1608163200&v=beta&t=lwWfT5Ukk8qd899Py3c0oGlkBinc-BoEo-3S4Xw54_4" alt="author-Michelle's profile">
<figcaption>
<p>Harshvardhan Sikarwar<br>
<time datetime="2020-06-28">18th October, 2020</time>
</p>
</figcaption>
</figure>
</div>
<div class="col-2 share-button">
<button type="button" class="btn btn-outline-dark" data-toggle="modal" data-target="#share_post">
<i class="fas fa-share"></i>
</button>
</div>
</div>
<!---------------------------- SHARE ICON Start ------------------------------->
<!-- Button trigger modal -->
<div class="modal fade" id="share_post" tabindex="-1" aria-labelledby="share_post_label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-body">
<!-- <div class="share-btn-container container"> -->
<div class="sharable-content">
<a href="#" class="facebook-btn">
<i class="fab fa-facebook"></i>
</a>
<a href="#" class="twitter-btn">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="pinterest-btn">
<i class="fab fa-pinterest"></i>
</a>
<a href="#" class="linkedin-btn">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="whatsapp-btn">
<i class="fab fa-whatsapp"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!------------------------------Share Icon End---------------------------->
<!-- <a href="content-page.html">
<h1 class="display-4">At augue eget arcu dictum</h1>
</a>
<p class="lead my-3">Aenean tincidunt eget purus ut porttitor. Etiam quis neque id lacus pulvinar consequat sed a arcu.
Aliquam eleifend maximus arcu.</p>
</div>
</div>
</div>
<div class="blog-card jumbotron p-4 p-md-5 text-black rounded bg-light">
<div class="row">
<div class="col-md-5">
<img class="blog-image" alt="dog" src="https://cdn.pixabay.com/photo/2015/06/08/15/02/pug-801826_960_720.jpg">
</div>
<div class="blog-desc col-md-7 ml-auto my-auto pt-lg-0 pt-4">
<div class="row">
<div class="col-10">
<figure class="article-footer">
<img class="profile-photo" src="https://cdn.pixabay.com/photo/2015/09/02/13/24/girl-919048_960_720.jpg" alt="author-Michelle's profile">
<figcaption>
<p>Michelle Appleton<br>
<time datetime="2020-06-28">28th June, 2020</time>
</p>
</figcaption>
</figure>
</div>
<div class="col-2 share-button">
<button type="button" class="btn btn-outline-dark" data-toggle="modal" data-target="#share_post">
<i class="fas fa-share"></i>
</button>
</div>
</div> -->
<!---------------------------- SHARE ICON Start ------------------------------->
<!-- Button trigger modal -->
<!-- <div class="modal fade" id="share_post" tabindex="-1" aria-labelledby="share_post_label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-body"> -->
<!-- <div class="share-btn-container container"> -->
<!-- <div class="sharable-content">
<a href="#" class="facebook-btn">
<i class="fab fa-facebook"></i>
</a>
<a href="#" class="twitter-btn">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="pinterest-btn">
<i class="fab fa-pinterest"></i>
</a>
<a href="#" class="linkedin-btn">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="whatsapp-btn">
<i class="fab fa-whatsapp"></i>
</a>
</div>
</div>
</div>
</div>
</div> -->
<!------------------------------Share Icon End---------------------------->
<a href="blog/Skill-to-success.php">
<h1 class="display-4">Skill to Success</h1>
</a>
<p class="lead my-3">Eruption of joy at the fall of an Indian wicket in India can mean only one thing- these were the words spoken by Harsha Bhogle as Tendulkar walked down the stands to bat , but let’s go a few years back when he started his career, people rarely remember that, as...</p>
</div>
</div>
</div>
</div>
<!---------------------------- FOOTER START ------------------------------------------->
<footer class="g-bg-color--dark">
<!-- Copyright -->
<div class="container g-padding-y-30--xs">
<h1 class="g-color--white-opacity">Quick Links</h1>
<br>
<div class="footer-row">
<div class="col-sm-12 col-md-3 col-lg-3">
<h4 class="g-color--white-opacity"><b>Consortium'21</b></h4>
<a href="https://consortium.ecellvnit.org/" target="_blank" class="g-color--white-opacity-light footer-para g-font-size-16--xs">
Consortium, the Annual Entrepreneurship Summit of VNIT Nagpur
</a>
</div>
<div class="col-sm-12 col-md-3 col-lg-3">
<h4 class="g-color--white-opacity"><b>Startup Conclave</b></h4>
<a href="https://startupconclave.ecellvnit.org/" target="_blank" class="g-color--white-opacity-light footer-para g-font-size-16--xs">
StartUp Conclave, a national-level business plan competition and a part of Consortium'21
</a>
</div>
<div class="col-sm-12 col-md-3 col-lg-3">
<h4 class="g-color--white-opacity"><b>Buy Merchandise</b></h4>
<a href="https://store.ecellvnit.org/" target="_blank" class="g-color--white-opacity-light footer-para g-font-size-16--xs">
Buy official merchandise of Consortium'21 at Ecell VNIT online store.
</a>
</div>
<div class="col-sm-12 col-md-3 col-lg-3">
<h4 class="g-color--white-opacity"><b>Startup Expo</b></h4>
<a href="https://consortium.ecellvnit.org/expo.php" target="_blank" class="g-color--white-opacity-light footer-para g-font-size-16--xs">
A grand platform for startups to display their product and/ or service to all the people.
</a>
</div>
</div>
</div>
<br>
<div class="container" style="padding-top:22px">
<div class="footer-row">
<div class="col-md-3">
<div>
<img src="https://startupconclave.ecellvnit.org/static/img/E-Cell_white.png" alt="" height="80" style="padding-top:10px">
</div>
</div>
<div class="col-md-3">
<h4 class="g-color--white-opacity">Contact Us</h4>
<p class="g-color--white-opacity-light">For Association Opportunities:<br><strong>contact@ecellvnit.org</strong></p>
<p class="g-color--white-opacity-light">For Sponsorship Opportunities:<br><strong>corporate@ecellvnit.org</strong></p>
</div>
<div class="col-md-3">
<h4 class="follow-ecell">Follow Ecell VNIT</h4>
<div class="row share-row justify-content-center" id="share_ecell">
<div class="col-md-4 col-2" id="share_ecell_icon">
<a class="s-header__action-link" href=" https://m.facebook.com/vnitecell/" target="_blank">
<span id="icons_ecell"><i class="fab fa-facebook fa-2x"></i></span>
<span class="aria-hidden sr-only">Facebook</span>
</a>
</div>
<div class="col-md-4 col-2" id="share_ecell_icon">
<a class="s-header__action-link" href="https://twitter.com/ecell_vnit" target="_blank">
<span id="icons_ecell"><i class="fab fa-twitter fa-2x"></i></span>
<span class="aria-hidden sr-only">Twitter</span>
</a>
</div>
<div class="col-md-4 col-2" id="share_ecell_icon">
<a class="s-header__action-link" href=" https://www.instagram.com/ecellvnit/" target="_blank">
<span id="icons_ecell"><i class="fab fa-instagram fa-2x"></i></span>
<span class="aria-hidden sr-only">Instagram</span>
</a>
</div>
</div>
<div class="row share-row justify-content-center" id="share_ecell">
<div class="col-md-4 my-3 col-2" id="share_ecell_icon ecell_icon_bottom">
<a class="s-header__action-link" href=" https://www.linkedin.com/company/6615520/" target="_blank">
<span id="icons_ecell"><i class="fab fa-linkedin-in fa-2x"></i></span>
<span class="aria-hidden sr-only">LinkedIn</span>
</a>
</div>
<div class="col-md-4 my-3 col-2" id="share_ecell_icon ecell_icon_bottom">
<a class="s-header__action-link" href=" https://www.youtube.com/channel/UC0KNOmODhqLcEpcfN9qEsIQ" target="_blank">
<span id="icons_ecell"><i class="fab fa-youtube fa-2x"></i></span>
<span class="aria-hidden sr-only">YouTube</span>
</a>
</div>
</div>
</div>
<div class="col-md-3">
<h4 class="g-color--white-opacity">Our Hosting Partner</h4>
<div class="hosting-partner-image-container">
<a href="https://www.znetlive.com/">
<img src="img/znetlive.png" alt="hosting partner - znet">
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12" style="position:relative; text-align:center">
<p class="g-font-size-14--xs g-margin-b-0--xs g-color--white-opacity g-padding-y-20--md">©
<a class="g-color--primary" href="https://ecellvnit.org" target="_blank">E-Cell VNIT</a>
</p>
</div>
</div>
</div>
<!-- End Copyright -->
</footer>
<!----------------------------------FOOTER END---------------------------->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<!--========== JAVASCRIPTS (Load javascripts at bottom, this will reduce page load time) ==========-->
<!-- Vendor -->
<!--<script type="text/javascript" src="../vendor/jquery.min.js"></script>
<script src="js/main.js"></script>
<script type="text/javascript" src="../vendor/jquery.migrate.min.js"></script>
<script type="text/javascript" src="../vendor/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../vendor/jquery.smooth-scroll.min.js"></script>
<script type="text/javascript" src="../vendor/jquery.back-to-top.min.js"></script>
<script type="text/javascript" src="../vendor/scrollbar/jquery.scrollbar.min.js"></script>
<script type="text/javascript" src="../vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<script type="text/javascript" src="../vendor/swiper/swiper.jquery.min.js"></script>
<script type="text/javascript" src="../vendor/waypoint.min.js"></script>
<script type="text/javascript" src="../vendor/counterup.min.js"></script>
<script type="text/javascript" src="../vendor/cubeportfolio/js/jquery.cubeportfolio.min.js"></script>
<script type="text/javascript" src="../vendor/jquery.parallax.min.js"></script>
<script type="text/javascript" src="../vendor/jquery.wow.min.js"></script>
<script src="../js/cards.js"></script>
<script src="../js/materialize.js"></script>-->
<!-- General Components and Settings -->
<!--<script type="text/javascript" src="../js/global.min.js"></script>
<script type="text/javascript" src="../js/components/header-sticky.min.js"></script>
<script type="text/javascript" src="../js/components/scrollbar.min.js"></script>
<script type="text/javascript" src="../js/components/magnific-popup.min.js"></script>
<script type="text/javascript" src="../js/components/swiper.min.js"></script>
<script type="text/javascript" src="../js/components/counter.min.js"></script>
<script type="text/javascript" src="../js/components/portfolio-3-col.min.js"></script>
<script type="text/javascript" src="../js/components/parallax.min.js"></script>
<script type="text/javascript" src="../js/components/google-map.min.js"></script>
<script type="text/javascript" src="../js/components/wow.min.js"></script>-->
<!--========== END JAVASCRIPTS ==========-->
<!-- Share js -->
<script src="blog/share.js"></script>
</body>
</html>