-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
videos.html
26 lines (26 loc) · 987 Bytes
/
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
---
layout: default
title: Video Collection
---
<div class="container">
<div class="section">
<h1>Video Collection</h1>
<div class="columns is-multiline">
{% for video in site.videos %}
<div class="column is-one-third">
<div class="card">
<div class="card-content">
<h2 class="title is-4">
<a href="{{ video.url }}">{{ video.title }}</a>
</h2>
<p>{{ video.description }}</p>
<p><strong>Duration:</strong> {{ video.video_duration }}</p>
<p><strong>Category:</strong> {{ video.category }}</p>
<a href="{{ video.url }}" class="button is-link">Watch Video</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>