-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (53 loc) · 1.9 KB
/
Copy pathindex.html
File metadata and controls
58 lines (53 loc) · 1.9 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: default
---
<!-- Each table will contain one row with the link from navigation.yml see 'navigation.html' -->
<!-- This is table of contents like that of cs231n -->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<table class="table table-striped">
<tbody>
{% for item in site.data.navigation %}
<tr>
<td>
<!-- Unit Name -->
<div style="color: #6fda44;">
<h5>
{{ item.unit}}
</h5>
</div>
<!-- Tutorial Link -->
<div>
<a href="{{ item.link }}">
{{ item.name }}
</a>
</div>
<!-- Tutorial Description -->
<div>
{{ item.desc }}
</div>
<div>
{% if item.test != "None" %}
<div>
<a href="{{ item.test-link }}" >
{{ item.test }}
</a>
<a href="{{ item.test-solution-link }}" style="color: red;">
[solution]
</a>
</div>
{% endif %}
</div>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>