forked from ev3dev/ev3dev.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1005 Bytes
/
index.html
File metadata and controls
30 lines (28 loc) · 1005 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
29
30
---
title: Tutorials
---
{% assign tutorials=site.pages | where: "category", "tutorials" | sort: "subject" | group_by: "subject" %}
<div class="row">
{% for group in tutorials %}
{% if group.name != "" %}
<div class="col-lg-6">
<div class="panel panel-default rounded-panel">
<div class="panel-heading">{{ group.name }}</div>
<div class="panel-body">
<ul>
{% assign items = group.items | sort: "title" %}
{% for item in items %}
<li>
<a href="{{ item.url }}">{{ item.title }}</a>
{% if item.subtitle %}
({{ item.subtitle }})
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>