forked from coronainfonepal/coronainfonepal.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
infos.html
46 lines (42 loc) · 1.29 KB
/
infos.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
---
layout: default
title: Information
permalink: /infos/
page_name: infos
---
{% 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="info-section pb-4">
<div class="info-header-section wow fadeInUp pt-5">
<div class="container">
{% if site.lang == "en" %}
{% include info/info-header.html infos=site.infos_en %}
{% else %}
{% include info/info-header.html infos=site.infos %}
{% endif %}
</div>
</div>
<hr class="section-bar mb-5 mt-4 wow fadeInUp" />
<div class="info-body-section wow fadeInUp">
<div class="container">
<div class="row">
{% if site.lang == "en" %}
{% for infos in site.infos_en %}
{% for info in infos.list %}
{% include info/info-outline.html info=info category=infos.category %}
{% endfor %}
{% endfor %}
{% else %}
{% for infos in site.infos %}
{% for info in infos.list %}
{% include info/info-outline.html info=info category=infos.category %}
{% endfor %}
{% endfor %}
{% endif %}
</div>
</div>
</div>
</section>