-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·43 lines (38 loc) · 1.14 KB
/
index.html
File metadata and controls
executable file
·43 lines (38 loc) · 1.14 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
37
38
39
40
41
42
43
---
title: "Videos · Learn the Web"
desc: "Learning & instruction video playlist companion site to the Learn the Web curriculum."
---
<!DOCTYPE html>
<html lang="en-ca">
<head>
<meta charset="utf-8">
<title>Videos · Learn the Web</title>
{% include head.html %}
</head>
<body>
<header role="banner">
<a href="/"><img src="/images/logo.svg" alt="Learn the Web"></a>
<div>
<h1>Videos</h1>
<p>Learning & instruction video playlist companion site to the Learn the Web curriculum.</p>
</div>
</header>
<main class="all-playlists" role="main">
<ul>
{% for playlist in site.playlists %}
<li>
<a href="{{playlist.url}}">
<svg><use xlink:href="/images/icons.svg#icon-play"/></svg>
<strong>{{playlist.title}}</strong>
{% assign total_vids=playlist.videos|size %}
<span>{{total_vids}} video{% if total_vids != 1 %}s{% endif %}</span>
</a>
</li>
{% endfor %}
</ul>
</main>
{% include copyright.html %}
{% include thomasjbradley.html %}
<script type="application/ld+json">{% include metadata.json %}</script>
</body>
</html>