Skip to content

Commit fb65bab

Browse files
committed
Output from jekyll new
Because I check in all the changes.
1 parent e5d0fbd commit fb65bab

22 files changed

+953
-203
lines changed

.gitignore

+3-196
Original file line numberDiff line numberDiff line change
@@ -1,196 +1,3 @@
1-
## Ignore Visual Studio temporary files, build results, and
2-
## files generated by popular Visual Studio add-ons.
3-
4-
# User-specific files
5-
*.suo
6-
*.user
7-
*.userosscache
8-
*.sln.docstates
9-
10-
# User-specific files (MonoDevelop/Xamarin Studio)
11-
*.userprefs
12-
13-
# Build results
14-
[Dd]ebug/
15-
[Dd]ebugPublic/
16-
[Rr]elease/
17-
[Rr]eleases/
18-
x64/
19-
x86/
20-
build/
21-
bld/
22-
[Bb]in/
23-
[Oo]bj/
24-
25-
# Visual Studo 2015 cache/options directory
26-
.vs/
27-
28-
# MSTest test Results
29-
[Tt]est[Rr]esult*/
30-
[Bb]uild[Ll]og.*
31-
32-
# NUNIT
33-
*.VisualState.xml
34-
TestResult.xml
35-
36-
# Build Results of an ATL Project
37-
[Dd]ebugPS/
38-
[Rr]eleasePS/
39-
dlldata.c
40-
41-
*_i.c
42-
*_p.c
43-
*_i.h
44-
*.ilk
45-
*.meta
46-
*.obj
47-
*.pch
48-
*.pdb
49-
*.pgc
50-
*.pgd
51-
*.rsp
52-
*.sbr
53-
*.tlb
54-
*.tli
55-
*.tlh
56-
*.tmp
57-
*.tmp_proj
58-
*.log
59-
*.vspscc
60-
*.vssscc
61-
.builds
62-
*.pidb
63-
*.svclog
64-
*.scc
65-
66-
# Chutzpah Test files
67-
_Chutzpah*
68-
69-
# Visual C++ cache files
70-
ipch/
71-
*.aps
72-
*.ncb
73-
*.opensdf
74-
*.sdf
75-
*.cachefile
76-
77-
# Visual Studio profiler
78-
*.psess
79-
*.vsp
80-
*.vspx
81-
82-
# TFS 2012 Local Workspace
83-
$tf/
84-
85-
# Guidance Automation Toolkit
86-
*.gpState
87-
88-
# ReSharper is a .NET coding add-in
89-
_ReSharper*/
90-
*.[Rr]e[Ss]harper
91-
*.DotSettings.user
92-
93-
# JustCode is a .NET coding addin-in
94-
.JustCode
95-
96-
# TeamCity is a build add-in
97-
_TeamCity*
98-
99-
# DotCover is a Code Coverage Tool
100-
*.dotCover
101-
102-
# NCrunch
103-
_NCrunch_*
104-
.*crunch*.local.xml
105-
106-
# MightyMoose
107-
*.mm.*
108-
AutoTest.Net/
109-
110-
# Web workbench (sass)
111-
.sass-cache/
112-
113-
# Installshield output folder
114-
[Ee]xpress/
115-
116-
# DocProject is a documentation generator add-in
117-
DocProject/buildhelp/
118-
DocProject/Help/*.HxT
119-
DocProject/Help/*.HxC
120-
DocProject/Help/*.hhc
121-
DocProject/Help/*.hhk
122-
DocProject/Help/*.hhp
123-
DocProject/Help/Html2
124-
DocProject/Help/html
125-
126-
# Click-Once directory
127-
publish/
128-
129-
# Publish Web Output
130-
*.[Pp]ublish.xml
131-
*.azurePubxml
132-
# TODO: Comment the next line if you want to checkin your web deploy settings
133-
# but database connection strings (with potential passwords) will be unencrypted
134-
*.pubxml
135-
*.publishproj
136-
137-
# NuGet Packages
138-
*.nupkg
139-
# The packages folder can be ignored because of Package Restore
140-
**/packages/*
141-
# except build/, which is used as an MSBuild target.
142-
!**/packages/build/
143-
# Uncomment if necessary however generally it will be regenerated when needed
144-
#!**/packages/repositories.config
145-
146-
# Windows Azure Build Output
147-
csx/
148-
*.build.csdef
149-
150-
# Windows Store app package directory
151-
AppPackages/
152-
153-
# Others
154-
*.[Cc]ache
155-
ClientBin/
156-
[Ss]tyle[Cc]op.*
157-
~$*
158-
*~
159-
*.dbmdl
160-
*.dbproj.schemaview
161-
*.pfx
162-
*.publishsettings
163-
node_modules/
164-
bower_components/
165-
166-
# RIA/Silverlight projects
167-
Generated_Code/
168-
169-
# Backup & report files from converting an old project file
170-
# to a newer Visual Studio version. Backup files are not needed,
171-
# because we have git ;-)
172-
_UpgradeReport_Files/
173-
Backup*/
174-
UpgradeLog*.XML
175-
UpgradeLog*.htm
176-
177-
# SQL Server files
178-
*.mdf
179-
*.ldf
180-
181-
# Business Intelligence projects
182-
*.rdl.data
183-
*.bim.layout
184-
*.bim_*.settings
185-
186-
# Microsoft Fakes
187-
FakesAssemblies/
188-
189-
# Node.js Tools for Visual Studio
190-
.ntvs_analysis.dat
191-
192-
# Visual Studio 6 build log
193-
*.plg
194-
195-
# Visual Studio 6 workspace options file
196-
*.opt
1+
_site
2+
.sass-cache
3+
.jekyll-metadata

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'https://rubygems.org'
2+
gem 'github-pages'

Gemfile.lock

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
RedCloth (4.2.9)
5+
activesupport (4.2.5)
6+
i18n (~> 0.7)
7+
json (~> 1.7, >= 1.7.7)
8+
minitest (~> 5.1)
9+
thread_safe (~> 0.3, >= 0.3.4)
10+
tzinfo (~> 1.1)
11+
addressable (2.3.8)
12+
blankslate (2.1.2.4)
13+
classifier-reborn (2.0.4)
14+
fast-stemmer (~> 1.0)
15+
coffee-script (2.4.1)
16+
coffee-script-source
17+
execjs
18+
coffee-script-source (1.10.0)
19+
colorator (0.1)
20+
ethon (0.8.0)
21+
ffi (>= 1.3.0)
22+
execjs (2.6.0)
23+
fast-stemmer (1.0.2)
24+
ffi (1.9.10-x64-mingw32)
25+
gemoji (2.1.0)
26+
github-pages (39)
27+
RedCloth (= 4.2.9)
28+
github-pages-health-check (~> 0.2)
29+
jekyll (= 2.4.0)
30+
jekyll-coffeescript (= 1.0.1)
31+
jekyll-feed (= 0.3.1)
32+
jekyll-mentions (= 0.2.1)
33+
jekyll-redirect-from (= 0.8.0)
34+
jekyll-sass-converter (= 1.3.0)
35+
jekyll-sitemap (= 0.8.1)
36+
jemoji (= 0.5.0)
37+
kramdown (= 1.5.0)
38+
liquid (= 2.6.2)
39+
maruku (= 0.7.0)
40+
mercenary (~> 0.3)
41+
pygments.rb (= 0.6.3)
42+
rdiscount (= 2.1.7)
43+
redcarpet (= 3.3.2)
44+
terminal-table (~> 1.4)
45+
github-pages-health-check (0.5.3)
46+
addressable (~> 2.3)
47+
net-dns (~> 0.8)
48+
public_suffix (~> 1.4)
49+
typhoeus (~> 0.7)
50+
html-pipeline (1.9.0)
51+
activesupport (>= 2)
52+
nokogiri (~> 1.4)
53+
i18n (0.7.0)
54+
jekyll (2.4.0)
55+
classifier-reborn (~> 2.0)
56+
colorator (~> 0.1)
57+
jekyll-coffeescript (~> 1.0)
58+
jekyll-gist (~> 1.0)
59+
jekyll-paginate (~> 1.0)
60+
jekyll-sass-converter (~> 1.0)
61+
jekyll-watch (~> 1.1)
62+
kramdown (~> 1.3)
63+
liquid (~> 2.6.1)
64+
mercenary (~> 0.3.3)
65+
pygments.rb (~> 0.6.0)
66+
redcarpet (~> 3.1)
67+
safe_yaml (~> 1.0)
68+
toml (~> 0.1.0)
69+
jekyll-coffeescript (1.0.1)
70+
coffee-script (~> 2.2)
71+
jekyll-feed (0.3.1)
72+
jekyll-gist (1.3.5)
73+
jekyll-mentions (0.2.1)
74+
html-pipeline (~> 1.9.0)
75+
jekyll (~> 2.0)
76+
jekyll-paginate (1.1.0)
77+
jekyll-redirect-from (0.8.0)
78+
jekyll (>= 2.0)
79+
jekyll-sass-converter (1.3.0)
80+
sass (~> 3.2)
81+
jekyll-sitemap (0.8.1)
82+
jekyll-watch (1.3.0)
83+
listen (~> 3.0)
84+
jemoji (0.5.0)
85+
gemoji (~> 2.0)
86+
html-pipeline (~> 1.9)
87+
jekyll (>= 2.0)
88+
json (1.8.3)
89+
kramdown (1.5.0)
90+
liquid (2.6.2)
91+
listen (3.0.4)
92+
rb-fsevent (>= 0.9.3)
93+
rb-inotify (>= 0.9)
94+
maruku (0.7.0)
95+
mercenary (0.3.5)
96+
mini_portile (0.6.2)
97+
minitest (5.8.2)
98+
net-dns (0.8.0)
99+
nokogiri (1.6.6.2-x64-mingw32)
100+
mini_portile (~> 0.6.0)
101+
parslet (1.5.0)
102+
blankslate (~> 2.0)
103+
posix-spawn (0.3.11)
104+
public_suffix (1.5.2)
105+
pygments.rb (0.6.3)
106+
posix-spawn (~> 0.3.6)
107+
yajl-ruby (~> 1.2.0)
108+
rb-fsevent (0.9.6)
109+
rb-inotify (0.9.5)
110+
ffi (>= 0.5.0)
111+
rdiscount (2.1.7)
112+
redcarpet (3.3.2)
113+
safe_yaml (1.0.4)
114+
sass (3.4.19)
115+
terminal-table (1.5.2)
116+
thread_safe (0.3.5)
117+
toml (0.1.2)
118+
parslet (~> 1.5.0)
119+
typhoeus (0.8.0)
120+
ethon (>= 0.8.0)
121+
tzinfo (1.2.2)
122+
thread_safe (~> 0.1)
123+
yajl-ruby (1.2.1)
124+
125+
PLATFORMS
126+
x64-mingw32
127+
128+
DEPENDENCIES
129+
github-pages
130+
131+
BUNDLED WITH
132+
1.10.6

_config.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely need to edit after that.
5+
# For technical reasons, this file is *NOT* reloaded automatically when you use
6+
# 'jekyll serve'. If you change this file, please restart the server process.
7+
8+
# Site settings
9+
title: Your awesome title
10+
11+
description: > # this means to ignore newlines until "baseurl:"
12+
Write an awesome description for your new site here. You can edit this
13+
line in _config.yml. It will appear in your document head meta (for
14+
Google search results) and in your feed.xml site description.
15+
baseurl: "" # the subpath of your site, e.g. /blog
16+
url: "http://yourdomain.com" # the base hostname & protocol for your site
17+
twitter_username: jekyllrb
18+
github_username: jekyll
19+
20+
# Build settings
21+
markdown: kramdown

_includes/footer.html

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<footer class="site-footer">
2+
3+
<div class="wrapper">
4+
5+
<h2 class="footer-heading">{{ site.title }}</h2>
6+
7+
<div class="footer-col-wrapper">
8+
<div class="footer-col footer-col-1">
9+
<ul class="contact-list">
10+
<li>{{ site.title }}</li>
11+
<li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
12+
</ul>
13+
</div>
14+
15+
<div class="footer-col footer-col-2">
16+
<ul class="social-media-list">
17+
{% if site.github_username %}
18+
<li>
19+
{% include icon-github.html username=site.github_username %}
20+
</li>
21+
{% endif %}
22+
23+
{% if site.twitter_username %}
24+
<li>
25+
{% include icon-twitter.html username=site.twitter_username %}
26+
</li>
27+
{% endif %}
28+
</ul>
29+
</div>
30+
31+
<div class="footer-col footer-col-3">
32+
<p>{{ site.description }}</p>
33+
</div>
34+
</div>
35+
36+
</div>
37+
38+
</footer>

0 commit comments

Comments
 (0)