forked from DigiKlausur/ccm_components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.12 KB
/
index.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
layout: default
title: Home
---
<h3>Overview</h3>
Repository for building <a href="https://github.com/ccmjs">CCM</a> components for the
<a href="https://digiklausur.github.io/">E-assessment</a> project.
<h3>Components</h3>
<table width="100%">
<colgroup>
<col width="30%" />
<col width="70%" />
</colgroup>
<thead>
<tr class="header">
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for component in site.data.components %}
<tr>
<td><a href="{{ component.path }}/">{{ component.name }}</a></td>
<td>{{ component.description }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<h3>Courses</h3>
<table width="100%">
<colgroup>
<col width="30%" />
<col width="70%" />
</colgroup>
<thead>
<tr class="header">
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for course in site.data.courses %}
<tr>
<td><a href="{{ course.path }}/">{{ course.name }}</a></td>
<td>{{ course.description }}</td>
</tr>
{% endfor %}
</tbody>
</table>