-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
66 lines (66 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
---
layout: ots
title: "Learning Materials"
---
<header>
<h1><a href="http://www.opentechschool.org">{{site.name}}’s</a></h1>
<h2><a href="{{site.baseurl}}">{{page.title}}</a></h2>
</header>
<nav>
<a class="toggle" gumby-trigger="nav > ul" href="#">
<i class="icon-menu"></i>
</a>
<ul>
{% for s in site.sections %}
<li><p class="skiplink">
<a href="#{{s.name}}" gumby-goto="[data-target='{{s.name}}']">{{s.name}}</a>
</p></li>
{% endfor %}
</ul>
</nav>
<div id="workshops">
{% for section in site.sections %}
<section id="{{section.name}}" data-target="{{section.name}}">
<h3>{{section.name}}<a href="#"><i class="icon-up-open"></i></a></h3>
<ul>
{% for tut in section.workshops %}
<li>
<div class="grid-box">
<div class="description">
<h4><a href="{{tut.url}}">{{tut.title}}</a></h4>
<p>{{tut.desc}}</p>
</div>
{% if tut.source %}
<div class="source-link icon-left entypo icon-github">
<a href="{{tut.source}}">Source</a>
</div>
{% endif %}
{% if tut.code %}
<div class="code-link icon-left entypo icon-code">
<a href="{{tut.code}}">Code</a>
</div>
{% endif %}
<a href="{{tut.url}}"><span class="div-link"></span></a>
</div>
</li>
{% endfor %}
</ul>
</section>
{% endfor %}
</div>
<footer>
<div class="container">
<h3>About OpenTechSchool</h3>
<p>
OpenTechSchool is a non-profit organisation made up of awesome volunteers
dedicated to providing free workshops, tutorials, and learning spaces
for the community. We welcome new members and contributions, and all
of our resources are available freely on the web.
</p>
<p class="copyright">
© <a href="http://www.opentechschool.org">OpenTechSchool</a>
|| Licensed under
<a href="http://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA 3.0</a>
</p>
</div>
</footer>