-
Notifications
You must be signed in to change notification settings - Fork 1
/
videos.html
36 lines (35 loc) · 1.39 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
---
layout: page
title: CI CoE Pilot - Videos
permalink: /materials/videos
---
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 space">
<div class="section-title">
<h2>Videos</h2>
</div>
<div class="material" style="padding-top: 2em">
{% if site.data.videos.size > 0 %}
{% for n in site.data.videos %}
<a name="{{ n.youtube_id }}"></a>
<div class="material-video col-md-12 col-sm-12">
<div class="material-video-l col-md-6 col-sm-6">
<h3>{{ n.title }}</h3>
<p>{{ n.desc }}</p>
</div>
<div class="material-video-r col-md-6 col-sm-6">
<iframe width="540" height="315" src="https://www.youtube.com/embed/{{ n.youtube_id }}"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</section>