-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
100 lines (89 loc) · 2.58 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
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
100
---
layout: landing
---
<!-- Banner -->
<section id="banner">
<div class="inner">
<h2>{{ site.title }}</h2>
<p>{{ site.description | markdownify }}</p>
<ul class="actions">
<li><a href="/atom-coderoad.html#install" class="button special">Quick Start</a></li>
</ul>
</div>
<a href="#one" class="more scrolly">Learn More</a>
</section>
<!-- One -->
{% for summary in site.categories.summary %}
<section id="one" class="wrapper style1 special">
<div class="inner">
<header class="major">
<h2>{{summary.title}}</h2>
{{summary.content}}
</header>
<ul class="icons major">
{% for lang in summary.languages %}
{% include language-icon.html language=lang.name icon=lang.icon %}
{% endfor %}
</ul>
</div>
</section>
{% endfor %}
<!-- Two -->
<section id="two" class="wrapper alt style2">
<!-- Features -->
{% for feature in site.categories.features reversed %}
<section class="spotlight wide">
<div class="image">
{% if feature.image.href %}
<a id="{{feature.image.id}}" href="#{{feature.image.href}}" class="modal-link">
{% endif %}
<img
class="lazy"
alt="{{feature.image.alt}}"
src="{{feature.image.src}}"
height="{{feature.image.height}}"
width="{{feature.image.height}}"
/>
{% if feature.image.href %}
</a>
{% endif %}
</div>
<div class="content">
<h2>{{feature.title}}</h2>
{{feature.content}}
{% if feature.actions %}
<ul class="actions">
{% for action in feature.actions %}
<li><a href="{{action.href}}" class="button special">{{action.title}}</a></li>
{% endfor %}
</ul>
{% endif %}
</div>
</section>
{% endfor %}
<!-- Three -->
<section id="three" class="wrapper style3 special">
<div class="inner">
<header class="major">
<h2>Tutorials</h2>
<p>Interactive lessons = learning faster. Look forward to more tutorials in the near future.</p>
</header>
{% include tutorial-list.html %}
</div>
</section>
<!-- CTA -->
<section id="cta" class="wrapper style4">
<div class="inner">
<header>
<h2>Accelerated Education</h2>
<p>Find out more about how to setup CodeRoad and get started learning and creating.</p>
</header>
<ul class="actions vertical">
<li><a href="/atom-coderoad.html#install" class="button fit special">Quick Start</a></li>
<li><a href="/overview.html" class="button fit">Overview</a></li>
</ul>
</div>
</section>
<!-- modals -->
{% include modal.html id="atom-coderoad-demo" title="Atom-CodeRoad" image="atom-coderoad.gif" %}
{% include modal.html id="builder-coderoad-demo" title="Builder-CodeRoad" image="builder-demo.gif" %}