-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmicrobit-activities.html
More file actions
48 lines (34 loc) · 1.3 KB
/
Copy pathmicrobit-activities.html
File metadata and controls
48 lines (34 loc) · 1.3 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
41
42
43
44
45
46
47
48
---
layout: default
title: Microbit Activities
---
Building tiny games and applications on the BBC micro:bit using Python.
Make sure you have downloaded the <a href="http://codewith.mu/">micro:bit Editor</a>
<h2>Level 1</h2>
<ul class="fa-ul">
{% assign sheets = (site.activities-microbit | where: "level", "1") %}
{% for sheet in sheets %}
<li><span class="fa-li"><i class="fas fa-code"></i></span><a href="{{ site.url }}{{ sheet.url }}">{{ sheet.title }}</a></li>
{% endfor %}
</ul>
<h2>Level 2</h2>
<ul class="fa-ul">
{% assign sheets = (site.activities-microbit | where: "level", "2") %}
{% for sheet in sheets %}
<li><span class="fa-li"><i class="fas fa-code"></i></span><a href="{{ site.url }}{{ sheet.url }}">{{ sheet.title }}</a></li>
{% endfor %}
</ul>
<h2>Level 3</h2>
<ul class="fa-ul">
{% assign sheets = (site.activities-microbit | where: "level", "3") %}
{% for sheet in sheets %}
<li><span class="fa-li"><i class="fas fa-code"></i></span><a href="{{ site.url }}{{ sheet.url }}">{{ sheet.title }}</a></li>
{% endfor %}
</ul>
<h2>Level 4</h2>
<ul class="fa-ul">
{% assign sheets = (site.activities-microbit | where: "level", "4") %}
{% for sheet in sheets %}
<li><span class="fa-li"><i class="fas fa-code"></i></span><a href="{{ site.url }}{{ sheet.url }}">{{ sheet.title }}</a></li>
{% endfor %}
</ul>