-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmodules.html
33 lines (27 loc) · 846 Bytes
/
modules.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
---
layout: full-page
---
<h1>Modules <small>Topics covered in this class.</small></h1>
{% assign modules = site.modules | sort: 'sort-order' %}
<div class="row">
{% for module in modules %}
<div class="col-sm-4">
<a class="block-link" href="{{ module.url | prepend: site.baseurl }}">
<div class="panel panel-primary">
<div class="panel-heading">
<h2 class="panel-title"><i class="fa fa-cube" aria-hidden="true"></i> {{ module.title }}</h2>
</div>
<div class="panel-body">
{{ module.summary }}
</div>
<div class="panel-footer">
<i class="fa fa-tags" aria-hidden="true"></i>
{% for tag in module.tags %}<span class="tag badge">{{ tag }}</span>{% endfor %}
</div>
</div>
</a>
</div>
{% else %}
<p>No modules configured for this course.</p>
{% endfor %}
</div>