Skip to content

Commit 27000db

Browse files
committed
first commit
0 parents  commit 27000db

File tree

7 files changed

+149
-0
lines changed

7 files changed

+149
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata

Gemfile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
source "https://rubygems.org"
2+
ruby RUBY_VERSION
3+
4+
# Hello! This is where you manage which Jekyll version is used to run.
5+
# When you want to use a different version, change it below, save the
6+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
7+
#
8+
# bundle exec jekyll serve
9+
#
10+
# This will help ensure the proper Jekyll version is running.
11+
# Happy Jekylling!
12+
gem "jekyll", "3.4.0"
13+
14+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
15+
gem "minima", "~> 2.0"
16+
17+
gem "jekyll-theme-architect"
18+
19+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
20+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
21+
# gem "github-pages", group: :jekyll_plugins
22+
23+
# If you have any plugins, put them here!
24+
group :jekyll_plugins do
25+
gem "jekyll-feed", "~> 0.6"
26+
end
27+
28+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
29+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
30+

Gemfile.lock

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.5.0)
5+
public_suffix (~> 2.0, >= 2.0.2)
6+
colorator (1.1.0)
7+
ffi (1.9.17)
8+
forwardable-extended (2.6.0)
9+
jekyll (3.4.0)
10+
addressable (~> 2.4)
11+
colorator (~> 1.0)
12+
jekyll-sass-converter (~> 1.0)
13+
jekyll-watch (~> 1.1)
14+
kramdown (~> 1.3)
15+
liquid (~> 3.0)
16+
mercenary (~> 0.3.3)
17+
pathutil (~> 0.9)
18+
rouge (~> 1.7)
19+
safe_yaml (~> 1.0)
20+
jekyll-feed (0.8.0)
21+
jekyll (~> 3.3)
22+
jekyll-sass-converter (1.5.0)
23+
sass (~> 3.4)
24+
jekyll-theme-architect (0.0.3)
25+
jekyll (~> 3.3)
26+
jekyll-watch (1.5.0)
27+
listen (~> 3.0, < 3.1)
28+
kramdown (1.13.2)
29+
liquid (3.0.6)
30+
listen (3.0.8)
31+
rb-fsevent (~> 0.9, >= 0.9.4)
32+
rb-inotify (~> 0.9, >= 0.9.7)
33+
mercenary (0.3.6)
34+
minima (2.1.0)
35+
jekyll (~> 3.3)
36+
pathutil (0.14.0)
37+
forwardable-extended (~> 2.6)
38+
public_suffix (2.0.5)
39+
rb-fsevent (0.9.8)
40+
rb-inotify (0.9.8)
41+
ffi (>= 0.5.0)
42+
rouge (1.11.1)
43+
safe_yaml (1.0.4)
44+
sass (3.4.23)
45+
46+
PLATFORMS
47+
ruby
48+
49+
DEPENDENCIES
50+
jekyll (= 3.4.0)
51+
jekyll-feed (~> 0.6)
52+
jekyll-theme-architect
53+
minima (~> 2.0)
54+
tzinfo-data
55+
56+
RUBY VERSION
57+
ruby 2.0.0p648
58+
59+
BUNDLED WITH
60+
1.14.3

_config.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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 edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: Siwei's blog
17+
email: wangsiwei2003[AT]hotmail[DOT]com
18+
description: > # this means to ignore newlines until "baseurl:"
19+
I am current work as DevOps engineer building a fast data platform on Windows Azure
20+
baseurl: "" # the subpath of your site, e.g. /blog
21+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
22+
twitter_username: SiweiWan
23+
github_username: SiweiWang
24+
25+
# Build settings
26+
markdown: kramdown
27+
theme: minima
28+
gems:
29+
- jekyll-feed
30+
exclude:
31+
- Gemfile
32+
- Gemfile.lock
33+
34+
# Custom setting
35+
future: true
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: post
3+
title: "First blog post!"
4+
date: 2017-02-13 16:40:49 -0500
5+
categories: jekyll update
6+
---
7+
8+
Beginning of journey.

about.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: page
3+
title: About
4+
permalink: /about/
5+
---
6+
7+
I am current work as DevOps engineer building a fast data platform on Windows Azure

index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
# You don't need to edit this file, it's empty on purpose.
3+
# Edit theme's home layout instead if you wanna make some changes
4+
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
5+
layout: home
6+
---

0 commit comments

Comments
 (0)