Skip to content

Commit 924b9c6

Browse files
committed
Revert "Removing theme files."
This reverts commit 1c5199e.
1 parent 1c5199e commit 924b9c6

File tree

216 files changed

+16609
-1
lines changed

Some content is hidden

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

216 files changed

+16609
-1
lines changed

404.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Page Not Found"
3+
search: exclude
4+
---
5+
6+
Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct.

Dockerfile

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
FROM ruby:2.1
2+
3+
4+
RUN apt-get clean \
5+
&& mv /var/lib/apt/lists /var/lib/apt/lists.broke \
6+
&& mkdir -p /var/lib/apt/lists/partial
7+
8+
RUN apt-get update
9+
10+
RUN apt-get install -y \
11+
node \
12+
python-pygments \
13+
&& apt-get clean \
14+
&& rm -rf /var/lib/apt/lists/
15+
16+
WORKDIR /tmp
17+
ADD Gemfile /tmp/
18+
ADD Gemfile.lock /tmp/
19+
RUN bundle install
20+
21+
VOLUME /src
22+
EXPOSE 4000
23+
24+
WORKDIR /src
25+
ENTRYPOINT ["jekyll"]
26+

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "https://rubygems.org"
2+
3+
gem 'github-pages', group: :jekyll_plugins
4+
gem 'wdm', '>= 0.1.0' if Gem.win_platform?

Gemfile.lock

+201
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (4.2.7)
5+
i18n (~> 0.7)
6+
json (~> 1.7, >= 1.7.7)
7+
minitest (~> 5.1)
8+
thread_safe (~> 0.3, >= 0.3.4)
9+
tzinfo (~> 1.1)
10+
addressable (2.5.0)
11+
public_suffix (~> 2.0, >= 2.0.2)
12+
coffee-script (2.4.1)
13+
coffee-script-source
14+
execjs
15+
coffee-script-source (1.12.2)
16+
colorator (1.1.0)
17+
ethon (0.10.1)
18+
ffi (>= 1.3.0)
19+
execjs (2.7.0)
20+
faraday (0.11.0)
21+
multipart-post (>= 1.2, < 3)
22+
ffi (1.9.17)
23+
forwardable-extended (2.6.0)
24+
gemoji (2.1.0)
25+
github-pages (117)
26+
activesupport (= 4.2.7)
27+
github-pages-health-check (= 1.3.0)
28+
jekyll (= 3.3.1)
29+
jekyll-avatar (= 0.4.2)
30+
jekyll-coffeescript (= 1.0.1)
31+
jekyll-default-layout (= 0.1.4)
32+
jekyll-feed (= 0.8.0)
33+
jekyll-gist (= 1.4.0)
34+
jekyll-github-metadata (= 2.3.1)
35+
jekyll-mentions (= 1.2.0)
36+
jekyll-optional-front-matter (= 0.1.2)
37+
jekyll-paginate (= 1.1.0)
38+
jekyll-readme-index (= 0.0.3)
39+
jekyll-redirect-from (= 0.11.0)
40+
jekyll-relative-links (= 0.2.1)
41+
jekyll-sass-converter (= 1.5.0)
42+
jekyll-seo-tag (= 2.1.0)
43+
jekyll-sitemap (= 0.12.0)
44+
jekyll-swiss (= 0.4.0)
45+
jekyll-theme-architect (= 0.0.3)
46+
jekyll-theme-cayman (= 0.0.3)
47+
jekyll-theme-dinky (= 0.0.3)
48+
jekyll-theme-hacker (= 0.0.3)
49+
jekyll-theme-leap-day (= 0.0.3)
50+
jekyll-theme-merlot (= 0.0.3)
51+
jekyll-theme-midnight (= 0.0.3)
52+
jekyll-theme-minimal (= 0.0.3)
53+
jekyll-theme-modernist (= 0.0.3)
54+
jekyll-theme-primer (= 0.1.7)
55+
jekyll-theme-slate (= 0.0.3)
56+
jekyll-theme-tactile (= 0.0.3)
57+
jekyll-theme-time-machine (= 0.0.3)
58+
jekyll-titles-from-headings (= 0.1.4)
59+
jemoji (= 0.7.0)
60+
kramdown (= 1.11.1)
61+
liquid (= 3.0.6)
62+
listen (= 3.0.6)
63+
mercenary (~> 0.3)
64+
minima (= 2.0.0)
65+
nokogiri (= 1.6.8.1)
66+
rouge (= 1.11.1)
67+
terminal-table (~> 1.4)
68+
github-pages-health-check (1.3.0)
69+
addressable (~> 2.3)
70+
net-dns (~> 0.8)
71+
octokit (~> 4.0)
72+
public_suffix (~> 2.0)
73+
typhoeus (~> 0.7)
74+
html-pipeline (2.5.0)
75+
activesupport (>= 2)
76+
nokogiri (>= 1.4)
77+
i18n (0.7.0)
78+
jekyll (3.3.1)
79+
addressable (~> 2.4)
80+
colorator (~> 1.0)
81+
jekyll-sass-converter (~> 1.0)
82+
jekyll-watch (~> 1.1)
83+
kramdown (~> 1.3)
84+
liquid (~> 3.0)
85+
mercenary (~> 0.3.3)
86+
pathutil (~> 0.9)
87+
rouge (~> 1.7)
88+
safe_yaml (~> 1.0)
89+
jekyll-avatar (0.4.2)
90+
jekyll (~> 3.0)
91+
jekyll-coffeescript (1.0.1)
92+
coffee-script (~> 2.2)
93+
jekyll-default-layout (0.1.4)
94+
jekyll (~> 3.0)
95+
jekyll-feed (0.8.0)
96+
jekyll (~> 3.3)
97+
jekyll-gist (1.4.0)
98+
octokit (~> 4.2)
99+
jekyll-github-metadata (2.3.1)
100+
jekyll (~> 3.1)
101+
octokit (~> 4.0, != 4.4.0)
102+
jekyll-mentions (1.2.0)
103+
activesupport (~> 4.0)
104+
html-pipeline (~> 2.3)
105+
jekyll (~> 3.0)
106+
jekyll-optional-front-matter (0.1.2)
107+
jekyll (~> 3.0)
108+
jekyll-paginate (1.1.0)
109+
jekyll-readme-index (0.0.3)
110+
jekyll (~> 3.0)
111+
jekyll-redirect-from (0.11.0)
112+
jekyll (>= 2.0)
113+
jekyll-relative-links (0.2.1)
114+
jekyll (~> 3.3)
115+
jekyll-sass-converter (1.5.0)
116+
sass (~> 3.4)
117+
jekyll-seo-tag (2.1.0)
118+
jekyll (~> 3.3)
119+
jekyll-sitemap (0.12.0)
120+
jekyll (~> 3.3)
121+
jekyll-swiss (0.4.0)
122+
jekyll-theme-architect (0.0.3)
123+
jekyll (~> 3.3)
124+
jekyll-theme-cayman (0.0.3)
125+
jekyll (~> 3.3)
126+
jekyll-theme-dinky (0.0.3)
127+
jekyll (~> 3.3)
128+
jekyll-theme-hacker (0.0.3)
129+
jekyll (~> 3.3)
130+
jekyll-theme-leap-day (0.0.3)
131+
jekyll (~> 3.3)
132+
jekyll-theme-merlot (0.0.3)
133+
jekyll (~> 3.3)
134+
jekyll-theme-midnight (0.0.3)
135+
jekyll (~> 3.3)
136+
jekyll-theme-minimal (0.0.3)
137+
jekyll (~> 3.3)
138+
jekyll-theme-modernist (0.0.3)
139+
jekyll (~> 3.3)
140+
jekyll-theme-primer (0.1.7)
141+
jekyll (~> 3.3)
142+
jekyll-theme-slate (0.0.3)
143+
jekyll (~> 3.3)
144+
jekyll-theme-tactile (0.0.3)
145+
jekyll (~> 3.3)
146+
jekyll-theme-time-machine (0.0.3)
147+
jekyll (~> 3.3)
148+
jekyll-titles-from-headings (0.1.4)
149+
jekyll (~> 3.3)
150+
jekyll-watch (1.5.0)
151+
listen (~> 3.0, < 3.1)
152+
jemoji (0.7.0)
153+
activesupport (~> 4.0)
154+
gemoji (~> 2.0)
155+
html-pipeline (~> 2.2)
156+
jekyll (>= 3.0)
157+
json (1.8.6)
158+
kramdown (1.11.1)
159+
liquid (3.0.6)
160+
listen (3.0.6)
161+
rb-fsevent (>= 0.9.3)
162+
rb-inotify (>= 0.9.7)
163+
mercenary (0.3.6)
164+
mini_portile2 (2.1.0)
165+
minima (2.0.0)
166+
minitest (5.10.1)
167+
multipart-post (2.0.0)
168+
net-dns (0.8.0)
169+
nokogiri (1.6.8.1)
170+
mini_portile2 (~> 2.1.0)
171+
octokit (4.6.2)
172+
sawyer (~> 0.8.0, >= 0.5.3)
173+
pathutil (0.14.0)
174+
forwardable-extended (~> 2.6)
175+
public_suffix (2.0.5)
176+
rb-fsevent (0.9.8)
177+
rb-inotify (0.9.8)
178+
ffi (>= 0.5.0)
179+
rouge (1.11.1)
180+
safe_yaml (1.0.4)
181+
sass (3.4.23)
182+
sawyer (0.8.1)
183+
addressable (>= 2.3.5, < 2.6)
184+
faraday (~> 0.8, < 1.0)
185+
terminal-table (1.7.3)
186+
unicode-display_width (~> 1.1.1)
187+
thread_safe (0.3.5)
188+
typhoeus (0.8.0)
189+
ethon (>= 0.8.0)
190+
tzinfo (1.2.2)
191+
thread_safe (~> 0.1)
192+
unicode-display_width (1.1.3)
193+
194+
PLATFORMS
195+
ruby
196+
197+
DEPENDENCIES
198+
github-pages
199+
200+
BUNDLED WITH
201+
1.14.3

_config.yml

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
theme: jekyll-theme-modernist
1+
theme: jekyll-theme-cayman

_data/alerts.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
tip: '<div class="alert alert-success" role="alert"><i class="fa fa-check-square-o"></i> <b>Tip: </b>'
2+
note: '<div class="alert alert-info" role="alert"><i class="fa fa-info-circle"></i> <b>Note: </b>'
3+
important: '<div class="alert alert-warning" role="alert"><i class="fa fa-warning"></i> <b>Important: </b>'
4+
warning: '<div class="alert alert-danger" role="alert"><i class="fa fa-exclamation-circle"></i> <b>Warning: </b>'
5+
end: '</div>'
6+
7+
callout_danger: '<div class="bs-callout bs-callout-danger">'
8+
callout_default: '<div class="bs-callout bs-callout-default">'
9+
callout_primary: '<div class="bs-callout bs-callout-primary">'
10+
callout_success: '<div class="bs-callout bs-callout-success">'
11+
callout_info: '<div class="bs-callout bs-callout-info">'
12+
callout_warning: '<div class="bs-callout bs-callout-warning">'
13+
14+
hr_faded: '<hr class="faded"/>'
15+
hr_shaded: '<hr class="shaded"/>'

_data/definitions.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
elephant: "This is a sample definition."
2+
3+
baseball: "Baseball is considered America's pasttime sport, though that may be more of a historical term than a current one. There's a lot more excitement about football than baseball. A baseball game is somewhat of a snooze to watch, for the most part."
4+
5+
basketball: "Basketball is a sport involving two teams of five players each competing to put a ball through a small circular rim 10 feet above the ground. Basketball requires players to be in top physical condition, since they spend most of the game running back and forth along a 94-foot-long floor."
6+
7+
football: "No doubt the most fun sport to watch, football also manages to accrue the most injuries with the players. From concussions to blown knees, football players have short sport lives."
8+
9+
soccer: "If there's one sport that dominates the world landscape, it's soccer. However, US soccer fans are few and far between. Apart from the popularity of soccer during the World Cup, most people don't even know the name of the professional soccer organization in their area."

_data/glossary.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
jekyll_platform: "Jekyll is a static site generator that builds sites using most modern web technologies."
2+
3+
fractious: "Like a little mischevious child, full of annoying and constant trouble."
4+
5+
gratuitous: "Something that is unwarranted and uncouth, like the social equivalent of a flagrant foul."
6+
7+
haughty: "Proud and flaunting it. Holding your head high up like a snooty, too-good-for-everything rich person."
8+
9+
impertinent: "Someone acting rude and insensitive to others."
10+
11+
intrepid: "Brave and courageous especially in a difficult, dangerous situation."

_data/samplelist.yml

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
entries:
2+
- title: Sidebar
3+
folders:
4+
- title: Food
5+
6+
folderitems:
7+
- title: Bananas
8+
url: bananas.html
9+
10+
subfolder:
11+
- title: Apples
12+
13+
subfolderitems:
14+
- title: Fuji apples
15+
url: fuji_apples.html
16+
17+
18+
- title: Gala apples
19+
url: gala_apples.html
20+
21+
name:
22+
husband: Tom
23+
wife: Shannon
24+
25+
bikes:
26+
- title: mountain bikes
27+
- title: road bikes
28+
- title: hybrid bikes
29+
30+
31+
salesteams:
32+
- title: Regions
33+
subfolderitems:
34+
- location: US
35+
- location: Spain
36+
- location: France
37+
38+
toc:
39+
- title: Group 1
40+
subfolderitems:
41+
- page: Thing 1
42+
- page: Thing 2
43+
- page: Thing 3
44+
- title: Group 2
45+
subfolderitems:
46+
- page: Piece 1
47+
- page: Piece 2
48+
- page: Piece 3
49+
- title: Group 3
50+
subfolderitems:
51+
- page: Widget 1
52+
- page: Widget 2
53+
- page: Widget 3
54+
55+
something: &hello Greetings earthling!
56+
myref: *hello
57+
58+
about:
59+
- zero
60+
- one
61+
- two
62+
- three
63+
64+
numbercolors:
65+
- zero:
66+
properties: red
67+
- one:
68+
properties: yellow
69+
- two:
70+
properties: green
71+
- three:
72+
properties: blue
73+
74+
mypages:
75+
- section1: Section 1
76+
audience: developers
77+
product: acme
78+
url: facebook.com
79+
- section2: Section 2
80+
audience: writers
81+
product: acme
82+
url: google.com
83+
- section3: Section 3
84+
audience: developers
85+
product: acme
86+
url: amazon.com
87+
- section4: Section 4
88+
audience: writers
89+
product: gizmo
90+
url: apple.com
91+
- section5: Section 5
92+
audience: writers
93+
product: acme
94+
url: microsoft.com
95+
96+
feedback: >
97+
This is my feedback to you.
98+
Even if I include linebreaks here,
99+
all of the linebreaks will be removed when the value is inserted.
100+
101+
block: |
102+
This pipe does something a little different.
103+
It preserves the breaks.
104+
This is really helpful for code samples,
105+
since you can format the code samples with
106+
the appropriate
107+
white spacing.

0 commit comments

Comments
 (0)