-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 1.86 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 1.86 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
---
title: Tutorials
excerpt: "Tutorials on a wide range of ev3dev functionality, including networking, motor control, and usage of extra hardware."
include_masonry: "true"
---
<p class="lead">
These tutorials will walk you through working with a wide range of hardware and
software. If you're looking for help with a specific goal, this is the place to
look!
</p>
{% for section in site.data.tutorial-groups %}
<h2>{{ section.title }}</h2>
<div class="row masonry-container" data-masonry='{ "itemSelector": ".tutorial-group-item-{{ section.id }}", "columnWidth": ".tutorial-grid-sizer-{{section.id}}", "percentPosition": true }'>
<div class="tutorial-grid-sizer-{{ section.id }} col-xs-12 col-sm-6 col-md-6"></div>
{% for group in section.items %}
<div class="col-xs-12 col-sm-6 col-md-6 tutorial-group-item-{{ section.id }}">
<div class="panel panel-default rounded-panel tutorial-panel" id="group-{{section.id}}-{{ group.id }}">
<div class="panel-heading">{{ group.title }}</div>
<div class="panel-body">
<p>
{{ group.description }}
</p>
<ul>
{% assign items = site.pages | where: "category", "tutorials" | where: "group",group.id %}
{% for item in items %}
<li>
<a href="{{ item.url }}">{{ item.title }}</a>
{% if item.subtitle %}
({{ item.subtitle }})
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% endfor %}
</div>
{% endfor %}