-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathhome.html
99 lines (96 loc) · 4.61 KB
/
home.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
excerpt: "A collection of python code for the micro:bit."
---
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% if page.title %}{{ page.title }} • {% endif %}{{ site.title }}</title>
{% if jekyll.environment == "production" %} {% include google-tracking-code.html %} {% endif %} {% if page.excerpt %}
<meta name="description" content="{{ page.excerpt | strip_html }}">{% endif %} {% if page.tags %}
<meta name="keywords" content="{{ page.tags | join: ', ' }}">{% endif %} {% if page.author %} {% assign author = site.data.authors[page.author] %}{% else %}{% assign author = site.owner %} {% endif %} {% include open-graph.html %} {% if author.google.plus %}
<link rel="author" href="https://plus.google.com/{{ author.google.plus }}" />{% endif %} {% include google-fonts-load.html %}
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
<link href="{{ site.url }}{{ site.baseurl }}/atom.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} Atom Feed">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="cleartype" content="on">
<!-- HTML5 Shiv and Media Query Support for IE -->
<!--[if lt IE 9]>
<script src="{{ site.url }}{{ site.baseurl }}/js/vendor/html5shiv.min.js"></script>
<script src="{{ site.url }}{{ site.baseurl }}/js/vendor/respond.min.js"></script>
<![endif]-->
</head>
<body>
<link rel="stylesheet" href="{{ site.url }}{{ site.baseurl }}/css/main.css"> {% include header.html %} {% include navigation-sliding.html %} {% include github-link.html %}
<div class="page-lead gradient-pattern">
<div class="wrap wrap2 page-lead-content">
<div class="front-page-left-column">
<div class="front-page-column-header"><h4 class="program-top">Choose a Python Editor<h4></div>
<div class="front-page-inner-left-column">
<div class="column-background">
<h5 class="cent">Download Mu</h5>
<ol>
<li><a href="http://codewith.mu/">Install Mu</a></li>
<li>Connect the micro:bit</li>
<li>Write Code</li>
<li>Click Flash!</li>
</ol>
</div>
<div style="text-align: center;">
<a href="http://codewith.mu/" class="btn-success space">Download Mu</a>
</div>
</div>
<!-- col right -->
<div class="front-page-inner-right-column">
<div class="column-background">
<h5 class="cent">Online Editor</h5>
<ol>
<li>Visit <a href="http://microbit.co.uk/">microbit.co.uk</a></li>
<li>Connect the micro:bit</li>
<li>Write Code</li>
<li>Click <em>download</em> & copy the .hex file to your device!</li>
</ol>
</div>
<div style="text-align: center;">
<a href="http://microbit.co.uk/" class="btn-info space">microbit.co.uk</a>
</div>
</div>
</div>
<div class="front-page-right-column">
<img src="{{ site.url }}{{ site.baseurl }}/images/logomasters.svg" width="100%">
</div>
</div>
</div>
</div>
<!-- /.page-lead -->
<div id="page-wrapper">
{% include browser-upgrade.html %}
<div id="main" role="main">
<div class="wrap">
<div class="page-title">
<h1>{{ page.title }}</h1> {% if page.excerpt %}
<h2>{{ page.excerpt }}</h2>{% endif %}
</div>
<div class="archive-wrap">
<div class="page-content">
<!-- Sorry the code is crap. In a rush -->
{{ content }}
</div>
<!-- /.page-content -->
</div class="archive-wrap">
<!-- /.archive-wrap -->
<!-- between div and wrap deleted a !hyphenhypen -->
<!-- </div> /.wrap
<div class="wrap"> -->
</div>
</div>
<!-- /#main -->
</div>
<!-- /.wrap -->
{% include footer.html %}
</div>
<!-- build time: {{ site.time | date_to_rfc822 }} -->
</body>
</html>