Skip to content

Commit 882b714

Browse files
committed
add overview docs, provide modal title
1 parent 3249498 commit 882b714

File tree

6 files changed

+51
-29
lines changed

6 files changed

+51
-29
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Overview
3+
id: overview
4+
categories:
5+
- overview
6+
---
7+
8+
> CodeRoad aims to make building & sharing interactive coding tutorials as easy as possible.
9+
10+
We hope to create fun and maintainable code tutorials that actually improve with time. We hope to see programming students become teachers, teachers become empowered, and coders become better, faster. But first, let's get some interactive coding tutorials built. That's where you come in.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Ecosystem
3+
id: ecosystem
4+
categories:
5+
- overview
6+
---
7+
8+
Coming soon...

_sass/_modal.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
.modal {
22
margin-top: 45px;
3+
text-align: center;
34
}
45

56
#btn-close-modal {
6-
padding: 45px;
7+
padding: 25px;
78
margin: 0 auto;
89
display: flex;
910
justify-content: space-around;

index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ <h2>Become a Contributer</h2>
142142
<img src="css/images/close.svg" alt="close" height="35px"/>
143143
</div>
144144
<div class="modal-content">
145+
<h3>Atom-CodeRoad</h3>
145146
<img alt="Atom-CodeRoad Demo" height="450px"
146147
src="images/atom-coderoad.gif" />
147148
</div>
@@ -154,6 +155,7 @@ <h2>Become a Contributer</h2>
154155
</div>
155156

156157
<div class="modal-content">
158+
<h3>Builder-CodeRoad</h3>
157159
<img alt="Builder-CodeRoad Demo" height="450px"
158160
src="images/builder-demo.gif" />
159161
</div>

overview.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
tagline: How CodeRoad Works
55
---
66

7-
<h3>A Overview of CodeRoad</h3>
8-
<p>Coming soon...</p>
7+
{% for post in site.categories.overview reversed %}
8+
<section id="{{ post.id }}">
9+
<h2>{{ post.title }}</h2>
10+
<div>{{ post.content }}</div>
11+
</section>
12+
{% endfor %}

tutorial-docs.html

Lines changed: 23 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,31 @@
55
---
66

77
<div id="docs" role="main">
8+
<p>The docs are a deeper read. It's recommended you get setup with the plugins and gain an understanding of how CodeRoad works before continuing.</p>
9+
<!-- OverView -->
10+
<section id="suggestions">
11+
<ul class="actions" style="text-align: center;">
12+
<li><a class="button special" href="/atom-coderoad.html">Quick Start</a></li>
13+
<li><a class="button" href="/builder-coderoad.html">Builder Start</a></li>
14+
<li><a class="button" href="/overview.html">Overview</a></li>
15+
</ul>
16+
</section>
817

9-
<!-- OverView -->
10-
<section id="overview">
11-
<h2>Overview</h2>
12-
<blockquote>
13-
CodeRoad aims to make building & sharing interactive coding tutorials as easy as possible.
14-
</blockquote>
15-
<p>We hope to create fun and maintainable code tutorials that actually improve with time. We hope to see programming students become teachers, teachers become empowered, and coders become better, faster. But first, let's get some interactive coding tutorials
16-
built. That's where you come in.</p>
17-
<a class="button special"
18-
href="/overview">How It Works</a>
19-
</section>
20-
21-
<!-- Articles -->
22-
{% for post in site.categories.docs reversed %}
23-
<br />
24-
<br />
25-
<section id="{{ post.id }}">
26-
<h2>{{ post.title }}</h2>
27-
<div>{{ post.content }}</div>
28-
<br>
29-
<a class="button" href="https://github.com/coderoad/coderoad.github.io/edit/master/_posts/docs/{{post.file}}">
30-
<i class="fa fa-pencil fa-fw"></i>
31-
<span class="network-name">
18+
<!-- Articles -->
19+
{% for post in site.categories.docs reversed %}
20+
<br />
21+
<br />
22+
<section id="{{ post.id }}">
23+
<h2>{{ post.title }}</h2>
24+
<div>{{ post.content }}</div>
25+
<br>
26+
<a class="button" href="https://github.com/coderoad/coderoad.github.io/edit/master/_posts/docs/{{post.file}}">
27+
<i class="fa fa-pencil fa-fw"></i>
28+
<span class="network-name">
3229
Edit {{post.title}} Docs
3330
</span>
34-
</a>
35-
</section>
36-
{% endfor %}
31+
</a>
32+
</section>
33+
{% endfor %}
3734

3835
</div>

0 commit comments

Comments
 (0)