Skip to content

Commit 2b299b4

Browse files
author
somi.han
committed
miminal mistakes jekyll theme
1 parent 2a7a9bd commit 2b299b4

638 files changed

Lines changed: 40629 additions & 3589 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
*.gem
2+
*.sublime-project
3+
*.sublime-workspace
4+
.bundle
5+
.DS_Store
6+
.jekyll-metadata
7+
.sass-cache
8+
_asset_bundler_cache
9+
_site
10+
codekit-config.json
11+
example/_site
12+
Gemfile.lock
13+
node_modules
14+
npm-debug.log*

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
language: ruby
2+
cache: bundler
3+
gemfile: docs/Gemfile
4+
script:
5+
- bundle exec jekyll algolia --source docs --destination docs/_site --config docs/_config.yml
6+
branches:
7+
only:
8+
# Change this to gh-pages if you're deploying using the gh-pages branch
9+
- master
10+
rvm:
11+
- 2.4

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

Gemfile

100755100644
Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1-
source 'https://rubygems.org'
1+
source "https://rubygems.org"
22

3-
gem 'github-pages', group: :jekyll_plugins
3+
gem "github-pages", group: :jekyll_plugins
4+
5+
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
6+
gem "wdm", "~> 0.1.1" if Gem.win_platform?
7+
8+
# If you have any plugins, put them here!
9+
group :jekyll_plugins do
10+
gem 'jekyll-remote-theme'
11+
end

Gemfile.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,8 @@ PLATFORMS
243243

244244
DEPENDENCIES
245245
github-pages
246+
jekyll-remote-theme
247+
tzinfo-data
246248

247249
BUNDLED WITH
248250
2.0.1

LICENSE.txt

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013-2018 Michael Rose and contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+
23+
Minimal Mistakes incorporates icons from [The Noun Project](https://thenounproject.com/)
24+
creators Garrett Knoll, Arthur Shlain, and Tracy Tam.
25+
Icons are distributed under Creative Commons Attribution 3.0 United States (CC BY 3.0 US).
26+
27+
Minimal Mistakes incorporates [Font Awesome](http://fontawesome.io/),
28+
Copyright (c) 2017 Dave Gandy.
29+
Font Awesome is distributed under the terms of the [SIL OFL 1.1](http://scripts.sil.org/OFL)
30+
and [MIT License](http://opensource.org/licenses/MIT).
31+
32+
Minimal Mistakes incorporates photographs from [Unsplash](https://unsplash.com).
33+
34+
Minimal Mistakes incorporates [Susy](http://susy.oddbird.net/),
35+
Copyright (c) 2017, Miriam Eric Suzanne.
36+
Susy is distributed under the terms of the [BSD 3-clause "New" or "Revised" License](https://opensource.org/licenses/BSD-3-Clause).
37+
38+
Minimal Mistakes incorporates [Breakpoint](http://breakpoint-sass.com/).
39+
Breakpoint is distributed under the terms of the [MIT/GPL Licenses](http://opensource.org/licenses/MIT).
40+
41+
Minimal Mistakes incorporates [FitVids.js](https://github.com/davatron5000/FitVids.js/),
42+
Copyright (c) 2013 Dave Rubert and Chris Coyier.
43+
FitVids is distributed under the terms of the [WTFPL License](http://sam.zoy.org/wtfpl/).
44+
45+
Minimal Mistakes incorporates [Magnific Popup](http://dimsemenov.com/plugins/magnific-popup/),
46+
Copyright (c) 2014-2016 Dmitry Semenov, http://dimsemenov.com.
47+
Magnific Popup is distributed under the terms of the MIT License.
48+
49+
Minimal Mistakes incorporates [jQuery Smooth Scroll](https://github.com/kswedberg/jquery-smooth-scroll),
50+
Copyright (c) 2017 Karl Swedberg.
51+
jQuery Smooth Scroll is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).
52+
53+
Minimal Mistakes incorporates [GreedyNav.js](https://github.com/lukejacksonn/GreedyNav),
54+
Copyright (c) 2015 Luke Jackson.
55+
GreedyNav.js is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).
56+
57+
Minimal Mistakes incorporates [Jekyll Group-By-Array](https://github.com/mushishi78/jekyll-group-by-array),
58+
Copyright (c) 2015 Max White <mushishi78@gmail.com>.
59+
Jekyll Group-By-Array is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).
60+
61+
Minimal Mistakes incorporates [Lunr](http://lunrjs.com),
62+
Copyright (c) 2017 Oliver Nightingale.
63+
Lunr is distributed under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Rakefile

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
require "bundler/gem_tasks"
2+
require "jekyll"
3+
require "listen"
4+
5+
def listen_ignore_paths(base, options)
6+
[
7+
/_config\.ya?ml/,
8+
/_site/,
9+
/\.jekyll-metadata/
10+
]
11+
end
12+
13+
def listen_handler(base, options)
14+
site = Jekyll::Site.new(options)
15+
Jekyll::Command.process_site(site)
16+
proc do |modified, added, removed|
17+
t = Time.now
18+
c = modified + added + removed
19+
n = c.length
20+
relative_paths = c.map{ |p| Pathname.new(p).relative_path_from(base).to_s }
21+
print Jekyll.logger.message("Regenerating:", "#{relative_paths.join(", ")} changed... ")
22+
begin
23+
Jekyll::Command.process_site(site)
24+
puts "regenerated in #{Time.now - t} seconds."
25+
rescue => e
26+
puts "error:"
27+
Jekyll.logger.warn "Error:", e.message
28+
Jekyll.logger.warn "Error:", "Run jekyll build --trace for more information."
29+
end
30+
end
31+
end
32+
33+
task :preview do
34+
base = Pathname.new('.').expand_path
35+
options = {
36+
"source" => base.join('test').to_s,
37+
"destination" => base.join('test/_site').to_s,
38+
"force_polling" => false,
39+
"serving" => true,
40+
"theme" => "minimal-mistakes-jekyll"
41+
}
42+
43+
options = Jekyll.configuration(options)
44+
45+
ENV["LISTEN_GEM_DEBUGGING"] = "1"
46+
listener = Listen.to(
47+
base.join("_data"),
48+
base.join("_includes"),
49+
base.join("_layouts"),
50+
base.join("_sass"),
51+
base.join("assets"),
52+
options["source"],
53+
:ignore => listen_ignore_paths(base, options),
54+
:force_polling => options['force_polling'],
55+
&(listen_handler(base, options))
56+
)
57+
58+
begin
59+
listener.start
60+
Jekyll.logger.info "Auto-regeneration:", "enabled for '#{options["source"]}'"
61+
62+
unless options['serving']
63+
trap("INT") do
64+
listener.stop
65+
puts " Halting auto-regeneration."
66+
exit 0
67+
end
68+
69+
loop { sleep 1000 }
70+
end
71+
rescue ThreadError
72+
# You pressed Ctrl-C, oh my!
73+
end
74+
75+
Jekyll::Commands::Serve.process(options)
76+
end

_assets/grafana-images.dot

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

_assets/http-stats-collector.dot

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: "나의 새로운 런닝 파트너 - 아식스 젤카야노 25"
3+
excerpt: "Asics Gel-Kayano 25 Blue 265mm"
4+
---
5+
6+
## 아식스 젤카야노 25 파란색 265mm
7+
8+
4년간 나와 함께 달려왔던 뉴발란스의 마라톤화인 MR00GB의 상태가 많이 안좋아져서 새로운 런닝화를 구매하기로 결정함!
9+
10+
네이버 카페인 휴먼레이스에서 여러 정보를 얻은 후 집에서 가장 가까운 런너스클럽 광진점으로 출발~~ :runner:
11+
12+
퇴근 후 들리니 박만년 사장님께서 친근하게 맞아주심!
13+
14+
내가 오른쪽 팔을 잘 안 흔들어서 왼쪽 발이 더 작아졌음을 매우 친절하고 자세하게 설명해 주심!
15+
16+
나도 몰랐던 자세와 교정법까지 알게되서 매우 흡족!! :smile:
17+
18+
요즘 몸무게가 쪼금 많이 나가므로(;) 런닝화로 안정화를 추천해 주심~
19+
20+
바로 아식스의 젤카야노 25~
21+
22+
올해 나온 신상품으로 착화감이 매우 훌륭함~ 이걸 신으니 매번 달리는 10km를 넘어 하프에 도전할 수 있을 것 같은 알지 못 할 자신감이 마구마구 생김;;
23+
24+
지출이 컸지만 오랫동안 나와 함께 달릴 아이니 좋은 녀석으로 선택함!
25+
26+
![젤카야노25](/assets/images/chatter/kayano25/kayano25_01.JPG)
27+
28+
![젤카야노25](/assets/images/chatter/kayano25/kayano25_02.JPG)
29+
30+
![젤카야노25](/assets/images/chatter/kayano25/kayano25_03.JPG)
31+
32+
![젤카야노25](/assets/images/chatter/kayano25/kayano25_04.JPG)
33+
34+
![젤카야노25](/assets/images/chatter/kayano25/kayano25_05.JPG)
35+
36+
![젤카야노25](/assets/images/chatter/kayano25/kayano25_06.JPG)
37+
38+
뒤쪽에 달린 플라스틱이 불편하지 않을까 걱정했지만 왠걸~ 너무나 편하고 안정감이 최고임!
39+
40+
얼른 달려야겠음~~ :running:

0 commit comments

Comments
 (0)