Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4304db7

Browse files
committed
init
0 parents  commit4304db7

File tree

82 files changed

+6474
-0
lines changed

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+
*.csdiff=csharp
6+
7+
# Standard to msysgit
8+
*.docdiff=astextplain
9+
*.DOCdiff=astextplain
10+
*.docxdiff=astextplain
11+
*.DOCXdiff=astextplain
12+
*.dotdiff=astextplain
13+
*.DOTdiff=astextplain
14+
*.pdfdiff=astextplain
15+
*.PDFdiff=astextplain
16+
*.rtfdiff=astextplain
17+
*.RTFdiff=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+
NetworkTrashFolder
50+
TemporaryItems
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+
<footerid="footer">
3+
<ulclass="icons">
4+
{% for socloc in site.social %}
5+
{% if socloc[1] %}
6+
{% if socloc[0] == 'email' %}
7+
<li><atarget="_blank"href="{{ socloc[1] }}"class="icon fa-envelope-o"
8+
><spanclass="label">E-mail</span></a></li>
9+
{% else %}
10+
<li><atarget="_blank"href="{{ socloc[1] }}"class="icon fa-{{ socloc[0] }}"
11+
><spanclass="label">{{ socloc[0] }}</span></a></li>
12+
{% endif %}
13+
{% endif %}
14+
{% endfor %}
15+
</ul>
16+
<ulclass="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+
<metacharset="utf-8"/>
3+
<metaname="viewport"content="width=device-width, initial-scale=1"/>
4+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
5+
<metaname="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+
<linkrel="canonical"href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
8+
<linkrel="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+
<linkrel="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+
<headerid="header"{%ifpage.layout == 'landing'%}class="alt"{%endif%}>
3+
<h1><ahref="{{ site.baseurl }}/index.html">{{ site.title }}</a></h1>
4+
<navid="nav">
5+
<ul>
6+
<liclass="special">
7+
<ahref="#menu"class="menuToggle"><span>Menu</span></a>
8+
<divid="menu">
9+
<ul>
10+
<li><ahref="index.html">Home</a></li>
11+
{% for my_page in site.pages %}
12+
{% if my_page.title %}
13+
<li><ahref="{{ 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+
<scriptsrc="{{"/js/jquery.min.js" | prepend: site.baseurl }}"></script>
3+
<scriptsrc="{{"/js/jquery.scrollex.min.js" | prepend: site.baseurl }}"></script>
4+
<scriptsrc="{{"/js/jquery.scrolly.min.js" | prepend: site.baseurl }}"></script>
5+
<scriptsrc="{{"/js/skel.min.js" | prepend: site.baseurl }}"></script>
6+
<scriptsrc="{{"/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+
<scriptsrc="{{"/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+
<divid="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+
<bodyclass="landing">
13+
14+
<!-- Page Wrapper -->
15+
<divid="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+
<articleid="main">
5+
6+
<header>
7+
<h2>{{ page.title }}</h2>
8+
<p>Page title stuff here</p>
9+
</header>
10+
11+
<sectionclass="wrapper style5">
12+
<divclass="inner">
13+
{{ content }}
14+
</div>
15+
</section>
16+
17+
</article>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp