-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.html
More file actions
28 lines (28 loc) · 926 Bytes
/
content.html
File metadata and controls
28 lines (28 loc) · 926 Bytes
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
---
stylesheet: content.css
---
<section class="content-section">
<h1>Class Content</h1>
</section>
{% for category in site.data.classes.content %}
<section class="content-section">
<header><h2>{{ category.name }}</h2></header>
<table class="content-table table table-striped">
<tbody>
{% for content in category.contents %}
<tr>
<th>{{ content.name }}</th>
<td>{{ content.description }}</td>
<td>
{% for resource in content.resources %}
<a href="{{ resource.link }}" class="btn btn-outline-primary" target="_blank">
{{ resource.name }}
</a>
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
{% endfor %}