-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (39 loc) · 1.35 KB
/
index.html
File metadata and controls
47 lines (39 loc) · 1.35 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
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: default
title: Your Awesome Title
page_name: home
---
<div class="home-section">
{% assign primary_msg = site.data.siteinfo.primary_msg %}
<!-- {% assign secondary_msg = site.data.siteinfo.secondary_msg %} -->
{% include message-of-the-page.html
primary_msg=primary_msg
%}
<section class="banner-area wow fadeInUp">
<div class="container">
<div class="row no-gutters">
<div class="col-md-6">
{% include corona-stats.html %}
</div>
<div class="col-md-6">
<a href="#youtubeVideoModal" data-src="https://www.youtube.com/embed/{{ site.data.siteinfo.video_about_corona }}?rel=0&autoplay=1" data-toggle="modal" class="youtube-video-btn">
<div class="video-play">
</div>
</a>
</div>
</div>
</div>
</section>
<hr class="section-bar mt-4 mb-5 wow fadeInUp" />
<div class="latest-news-section py-2 pb-5 wow fadeInUp">
<div class="container">
<div class="card-columns">
{% for post in site.posts limit: 8 %}
{% include blogs/post-outline.html post=post %}
{% endfor %}
</div>
</div>
</div>
{% include youtube-video-modal.html %}