-
Notifications
You must be signed in to change notification settings - Fork 29
/
index.html
57 lines (49 loc) · 1.53 KB
/
index.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
layout: default
answerrostag: "index"
---
<div class="home">
<h1>A "Getting Started" Guide for Developers Interested in Robotics</h1>
{% include youtube_index.html youtubeid="ni49uYq4cF4" title="Coffee Bot: Learn.TurtleBot.com's final demo." %}
{% include image_onrightoftext.html img="assets/turtlebot_2_lg.png" width="225" %}
<h2>Learning with the TurtleBot</h2>
<ol>
{% for post in site.posts reversed %}
{% if post.track contains "main" %}
<li>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ol>
<h2>CoffeeBot Challenge</h2>
<ol>
{% for post in site.posts reversed %}
{% if post.track contains "coffeebot" %}
<li>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ol>
<h2>Learning with the TurtleBot in Simulation</h2>
<ol>
{% for post in site.posts reversed %}
{% if post.track contains "simulation" %}
<li>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ol>
<h2>Challenge in Simulation</h2>
<ol>
{% for post in site.posts reversed %}
{% if post.track contains "challenge" %}
<li>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ol>
</div>