-
Notifications
You must be signed in to change notification settings - Fork 1
/
2022-2023-lessons.html
32 lines (31 loc) · 1.16 KB
/
2022-2023-lessons.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
---
layout: page
---
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">2022-23 {{ site.data.sitetext[site.locale].lessontab.title }}</h2>
<h3 class="section-subheading text-muted">{{ site.data.sitetext[site.locale].lessontab.text }}</h3>
</div>
</div>
<table class="table table-striped">
<tr>
<th>Lesson</th>
<th>Site</th>
<th>Repository</th>
<th>Instructor Notes</th>
<th>Status</th>
<th>Author(s)</th>
</tr>
{% for lesson in site.data.sitetext[site.locale].lessons.years[0].lessons %}
<tr>
<td>{{ lesson.lesson-title }}</td>
<td><a href="{{ lesson.site }}" target="_blank" class="fa fa-laptop"></a></td>
<td><a href="{{ lesson.repo }}" target="_blank" class="fab fa-github"></a></td>
<td><a href="{{ lesson.notes }}" target="_blank" class="fa fa-plus-circle"></a></td>
<td>{{ lesson.status }}</td>
<td>{{ lesson.author }}</td>
</tr>
{% endfor %}
</table>
</div>