Skip to content

Commit 615efa1

Browse files
committed
update contributors, style fixes
1 parent 4a57ddf commit 615efa1

File tree

9 files changed

+56
-17
lines changed

9 files changed

+56
-17
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ social:
1919
email: mailto:coderoadapp@gmail.com?subject=CodeRoad
2020
#flickr:
2121
#instagram:
22-
#youtube-square:
22+
youtube-square: https://www.youtube.com/channel/UCDDw5bc8muROZkT3IUqamPg
2323
#spotify:
2424
#stack-overflow:
2525
#vimeo:

_includes/tutorial-list.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
{% for tutorial in site.categories.tutorials reversed %}
44
<li>
55
<h3>
6-
<span style="color: yellow">{{tutorial.language}}</span> {{tutorial.title}}
6+
<span style="color: yellow">{{tutorial.language}} </span>
7+
<a href="{{tutorial.link}}">{{tutorial.title}}</a>
78
</h3>
89
<p>{{tutorial.content}}</p>
910
</li>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: contributor
3+
name: Shawn McKay
4+
social:
5+
twitter: https://twitter.com/Sh_McK
6+
github: https://github.com/ShMcK
7+
linkedin: https://www.linkedin.com/in/shmck
8+
email: shawn.j.mckay@gmail.com
9+
categories:
10+
- contributors
11+
---
12+
13+
Former English teacher, now self-taught coder, living in beautiful Vancouver, Canada.

_posts/tutorial-docs/2016-01-11-contributing.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

_posts/tutorials/2016-01-01-functional-school.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: tutorial
33
title: Functional School
44
file: 2016-01-01-functional-school.md
55
language: JS
6-
url: https://github.com/coderoad/coderoad-functional-school
6+
link: //github.com/coderoad/coderoad-functional-school
77
categories:
88
- tutorials
99
---

_posts/tutorials/2016-01-02-es2015.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: tutorial
33
title: ES2015
44
file: 2016-01-02-es2015.md
55
language: JS
6-
url: https://github.com/shmck/coderoad-es2015
6+
link: //github.com/shmck/coderoad-es2015
77
categories:
88
- tutorials
99
---

_sass/_custom.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.wide {
2-
padding-top: 50px;
3-
padding-bottom: 50px;
2+
padding-top: 75px;
3+
padding-bottom: 75px;
44
}

contributors.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: page
3+
title: Contributors
4+
tagline: Behind the Scenes
5+
---
6+
7+
{% for person in site.categories.contributors reversed %}
8+
<section id="{{ person.name }}">
9+
{% if person.image %}
10+
<div>
11+
<span class="image left">
12+
<img src="images/contributors/{{person.image}}" alt="" />
13+
</span>
14+
</div>
15+
{% endif %}
16+
<div>
17+
<h2>{{ person.name }}</h2>
18+
<div>{{ person.content }}</div>
19+
<ul class="icons">
20+
{% for socloc in person.social %} {% if socloc[1] %} {% if socloc[0] == 'email' %}
21+
<li><a href="{{ socloc[1] }}" class="icon fa-envelope-o"><span class="label">E-mail</span></a></li>
22+
{% else %}
23+
<li><a target="_blank" href="{{ socloc[1] }}" class="icon fa-{{ socloc[0] }}"><span class="label">{{ socloc[0] }}</span></a></li>
24+
{% endif %} {% endif %} {% endfor %}
25+
</ul>
26+
</div>
27+
</section>
28+
{% endfor %}
29+
30+
<hr />
31+
<section>
32+
<p>Want to join this list? Send an email to see how you can help.</p>
33+
34+
<p>Also checkout the <a href="https://github.com/coderoad/atom-coderoad/blob/master/CONTRIBUTING.md">contributing guidelines</a>.</p>
35+
</section>

tutorial-docs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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>
8+
<blockquote>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.</blockquote>
99
<!-- OverView -->
1010
<section id="suggestions">
1111
<ul class="actions" style="text-align: center;">

0 commit comments

Comments
 (0)