-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvideos.html
40 lines (37 loc) · 1.09 KB
/
videos.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
---
layout: default
title: Videos
permalink: /videos/
page_name: videos
---
<section class="info-section pb-5">
<div class="info-header-section wow fadeInUp pt-5 pb-2">
<div class="container">
{% if site.lang == "en" %}
{% include info/video-header.html videos=site.videos_en %}
{% else %}
{% include info/video-header.html videos=site.videos %}
{% endif %}
</div>
</div>
<hr class="section-bar wow fadeInUp">
<div class="info-body-section wow fadeInUp pt-4">
<div class="container">
<div class="row">
{% if site.lang == "en" %}
{% for data in site.videos_en %}
{% for video in data.list %}
{% include info/video-outline.html video=video category=data.category %}
{% endfor %}
{% endfor %}
{% else %}
{% for data in site.videos %}
{% for video in data.list %}
{% include info/video-outline.html video=video category=data.category %}
{% endfor %}
{% endfor %}
{% endif %}
</div>
</div>
</div>
</section>