Skip to content

Commit 4304db7

Browse files
committed
init
0 parents  commit 4304db7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+6474
-0
lines changed

.gitattributes

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
7+
# Standard to msysgit
8+
*.doc diff=astextplain
9+
*.DOC diff=astextplain
10+
*.docx diff=astextplain
11+
*.DOCX diff=astextplain
12+
*.dot diff=astextplain
13+
*.DOT diff=astextplain
14+
*.pdf diff=astextplain
15+
*.PDF diff=astextplain
16+
*.rtf diff=astextplain
17+
*.RTF diff=astextplain

.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Jekyll ignores
2+
.sass-cache/
3+
_site
4+
5+
# Windows image file caches
6+
Thumbs.db
7+
ehthumbs.db
8+
9+
# Folder config file
10+
Desktop.ini
11+
12+
# Recycle Bin used on file shares
13+
$RECYCLE.BIN/
14+
15+
# Windows Installer files
16+
*.cab
17+
*.msi
18+
*.msm
19+
*.msp
20+
21+
# Windows shortcuts
22+
*.lnk
23+
24+
# =========================
25+
# Operating System Files
26+
# =========================
27+
28+
# OSX
29+
# =========================
30+
31+
.DS_Store
32+
.AppleDouble
33+
.LSOverride
34+
35+
# Thumbnails
36+
._*
37+
38+
# Files that might appear in the root of a volume
39+
.DocumentRevisions-V100
40+
.fseventsd
41+
.Spotlight-V100
42+
.TemporaryItems
43+
.Trashes
44+
.VolumeIcon.icns
45+
46+
# Directories potentially created on remote AFP share
47+
.AppleDB
48+
.AppleDesktop
49+
Network Trash Folder
50+
Temporary Items
51+
.apdisk

LICENSE.txt

Lines changed: 63 additions & 0 deletions
Large diffs are not rendered by default.

README.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# CodeRoad Site
2+
3+
Landing page for CodeRoad: interactive coding tutorials in your editor.

_config.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Welcome to Jekyll!
2+
#
3+
4+
# Site settings
5+
title: CodeRoad
6+
description: |
7+
Interactive Coding Tutorials
8+
In Your Editor
9+
owner: Shawn McKay # or company name
10+
first_published: 2016 # if migrating another site, the year of your first publish
11+
email: coderoad-app@gmail.com
12+
baseurl: "" # the subpath of your site, e.g. /blog
13+
url: "https://coderoad.github.com" # the base hostname & protocol for your site
14+
social:
15+
twitter: https://twitter.com/coderoadapp
16+
github: https://github.com/coderoad
17+
#linkedin-square: https://linkedin.com/in/<username>
18+
#facebook-official: https://facebook.com/<username>
19+
google-plus-square: https://plus.google.com/114957986906029613694/about
20+
# email: /contact/
21+
#flickr:
22+
#instagram:
23+
#youtube-square:
24+
#spotify:
25+
#stack-overflow:
26+
#vimeo:
27+
#reddit:
28+
#stubleupon:
29+
#delicious:
30+
#pied-piper:
31+
#digg:
32+
#soundcloud:
33+
#deviantart:
34+
#angellist:
35+
#tumblr-square:
36+
#stackexchange:
37+
#weibo:
38+
#trello:
39+
#foursquare:
40+
#linux:
41+
#bitbucket-square:
42+
#vk:
43+
#slack:
44+
#vine:
45+
#weixin:
46+
#yelp:
47+
#skyatlas:
48+
#leanpub:
49+
#connectdevelop:
50+
#ils:
51+
#forumbee:
52+
#tripadvisor:
53+
#amazon:
54+
55+
# Build settings
56+
markdown: kramdown
57+
kramdown:
58+
input: GFM
59+
syntax_highlighter: rouge
60+
parse_block_html: true
61+
#sass:
62+
# style: compressed

_includes/footer.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!-- Footer -->
2+
<footer id="footer">
3+
<ul class="icons">
4+
{% for socloc in site.social %}
5+
{% if socloc[1] %}
6+
{% if socloc[0] == 'email' %}
7+
<li><a target="_blank" href="{{ socloc[1] }}" class="icon fa-envelope-o"
8+
><span class="label">E-mail</span></a></li>
9+
{% else %}
10+
<li><a target="_blank" href="{{ socloc[1] }}" class="icon fa-{{ socloc[0] }}"
11+
><span class="label">{{ socloc[0] }}</span></a></li>
12+
{% endif %}
13+
{% endif %}
14+
{% endfor %}
15+
</ul>
16+
<ul class="copyright">
17+
<li>&copy; {% assign thisyear = site.time | date: "%Y" %}
18+
{% if site.first_published %}
19+
{% capture diff %}{{ site.first_published | minus:thisyear }}{% endcapture %}
20+
{% if diff contains '-' %}{{ site.first_published }},{% endif %}
21+
{% endif %}
22+
{{ thisyear }}
23+
{% if site.owner %}{{ site.owner }}{% else %}{{ site.title }}{% endif %}</li>
24+
<!-- <li>Design: <a href="http://html5up.net" target="_blank">HTML5 UP</a></li>
25+
<li>Built with: <a href="http://jekyllrb.com" target="_blank">Jekyll</a></li> -->
26+
</ul>
27+
</footer>

_includes/head.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<head>
2+
<meta charset="utf-8" />
3+
<meta name="viewport" content="width=device-width, initial-scale=1" />
4+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
5+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
6+
<!--[if lte IE 8]><script src="{{ "/js/ie/html5shiv.js" | prepend: site.baseurl }}"></script><![endif]-->
7+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
8+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}" />
9+
<!--[if lte IE 8]><link rel="stylesheet" href="{{ "/css/ie8.css" | prepend: site.baseurl }}" /><![endif]-->
10+
<!--[if lte IE 9]><link rel="stylesheet" href="{{ "/css/ie9.css" | prepend: site.baseurl }}" /><![endif]-->
11+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
12+
</head>

_includes/header.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!-- Header -->
2+
<header id="header"{% if page.layout == 'landing' %} class="alt"{% endif %}>
3+
<h1><a href="{{ site.baseurl }}/index.html">{{ site.title }}</a></h1>
4+
<nav id="nav">
5+
<ul>
6+
<li class="special">
7+
<a href="#menu" class="menuToggle"><span>Menu</span></a>
8+
<div id="menu">
9+
<ul>
10+
<li><a href="index.html">Home</a></li>
11+
{% for my_page in site.pages %}
12+
{% if my_page.title %}
13+
<li><a href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a></li>
14+
{% endif %}
15+
{% endfor %}
16+
</ul>
17+
</div>
18+
</li>
19+
</ul>
20+
</nav>
21+
</header>

_includes/scripts.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!-- Scripts -->
2+
<script src="{{ "/js/jquery.min.js" | prepend: site.baseurl }}"></script>
3+
<script src="{{ "/js/jquery.scrollex.min.js" | prepend: site.baseurl }}"></script>
4+
<script src="{{ "/js/jquery.scrolly.min.js" | prepend: site.baseurl }}"></script>
5+
<script src="{{ "/js/skel.min.js" | prepend: site.baseurl }}"></script>
6+
<script src="{{ "/js/util.js" | prepend: site.baseurl }}"></script>
7+
<!--[if lte IE 8]><script src="{{ "/js/ie/respond.min.js" | prepend: site.baseurl }}"></script><![endif]-->
8+
<script src="{{ "/js/main.js" | prepend: site.baseurl }}"></script>

_layouts/default.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<!--
3+
Original Design: Spectral by HTML5 UP
4+
html5up.net | @n33co
5+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
6+
Jekyll build mod
7+
-->
8+
<html>
9+
10+
{% include head.html %}
11+
12+
<body>
13+
14+
<!-- Page Wrapper -->
15+
<div id="page-wrapper">
16+
17+
{% include header.html %}
18+
19+
{{ content }}
20+
21+
{% include footer.html %}
22+
23+
{% include scripts.html %}
24+
25+
</div>
26+
27+
</body>
28+
29+
</html>

_layouts/docs.html

Whitespace-only changes.

_layouts/landing.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<!--
3+
Original Design: Spectral by HTML5 UP
4+
html5up.net | @n33co
5+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
6+
Jekyll build mod
7+
-->
8+
<html>
9+
10+
{% include head.html %}
11+
12+
<body class="landing">
13+
14+
<!-- Page Wrapper -->
15+
<div id="page-wrapper">
16+
17+
{% include header.html %}
18+
19+
{{ content }}
20+
21+
{% include footer.html %}
22+
23+
{% include scripts.html %}
24+
25+
</div>
26+
27+
</body>
28+
29+
</html>

_layouts/page.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: default
3+
---
4+
<article id="main">
5+
6+
<header>
7+
<h2>{{ page.title }}</h2>
8+
<p>Page title stuff here</p>
9+
</header>
10+
11+
<section class="wrapper style5">
12+
<div class="inner">
13+
{{ content }}
14+
</div>
15+
</section>
16+
17+
</article>

0 commit comments

Comments
 (0)