forked from ev3dev/ev3dev.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.html
More file actions
31 lines (28 loc) · 722 Bytes
/
tutorial.html
File metadata and controls
31 lines (28 loc) · 722 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
31
---
layout: page
---
<hr />
<div class="nav-dropdown-arrow">
<div>
{% include /page-core/breadcrumbs.html %}
</div>
{% if page.kernel_version %}
<div class="alert alert-info">
{% include /style/icon.html type="info" %}
This docs page is for kernel version <code>{{ page.kernel_version }}</code>
</div>
{% endif %}
</div>
<hr />
{{ content }}
{% if page.author %}
{% assign count = page.author | size %}
{% if count > 1 %}
<h2> Authors </h2>
{% else %}
<h2> Author </h2>
{% endif %}
{% for author in page.author %}
<div style="float: left; margin-right: 20px;">{% include /util/author-card.html author=author theme='light' %}</div>
{% endfor %}
{% endif %}