-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 767 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 767 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
---
title: ev3dev Developer Tools
---
<p>
This page contains information about the tools we use for developing ev3dev
itself. Most of the information is not applicable for those just interested
in writing programs that run on the ev3dev distribution.
</p>
{% assign devtools=site.pages | where: "category", "devtools" | group_by: "subject" %}
<ul>
{% for group in devtools %}
{% if group.name != "" %}
<li>{{ group.name }}</li>
<ul>
{% for item in group.items %}
<li>
<a href="{{ item.url }}">{{ item.title }}</a>
{% if item.subtitle %}
({{ item.subtitle }})
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}
</ul>