-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvideos.html
More file actions
36 lines (33 loc) · 1.11 KB
/
videos.html
File metadata and controls
36 lines (33 loc) · 1.11 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
---
layout: default
title: Videos
---
<div class="row section featured topspace">
<h2 class="section-title"><span>Videos</span></h2>
<h5 style="text-align: center; margin-bottom: 30px"><a href="https://www.youtube.com/user/gcarcassi">Gabriele Carcassi's youtube channel</a> includes videos aimed at physics/math/engineering students at the intermediate level.</h5>
</div>
<div class="container">
<div class="row row-cols-1 row-cols-md-3 g-4">
{% for video in site.data.videos %}
{% assign extra = 3 | minus: forloop.length | modulo: 3 %}
<div class="card-body">
<div style="width:100%;height:0;padding-bottom:51%;position:relative">
<iframe style="width:100%;height:100%;position:absolute;left:0;top:0" width="560" height="315" src="{{ video.url }}" frameborder="0" allowfullscreen></iframe>
</div>
<br>
<p>{{ video.description }}</p>
<br>
</div>
{% endfor %}
{% for i in (1..extra)%}
<div class="card-body">
<div style="width:100%;height:0;padding-bottom:51%;position:relative">
</div>
<br>
<p></p>
<br>
</div>
{% endfor %}
</div>
</br>
</div>