commit 7bae29cb75e00f0707ba139430f85cd9c95024da
Author: Mike JS. Choi
Date: Mon Jul 24 10:22:05 2017 +0900
Initial commit
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9d27662
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+_site/
+.swp
+.sass-cache/
+.jekyll-metadata
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..264717b
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,15 @@
+language: ruby
+rvm:
+ - 2.3.3
+
+install:
+ - bundle install
+script:
+ - bundle exec jekyll build
+ - rake check
+
+env:
+ global:
+ - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
+
+sudo: false # route your build to the container-based infrastructure for a faster build
diff --git a/404.md b/404.md
new file mode 100644
index 0000000..3e6b7b1
--- /dev/null
+++ b/404.md
@@ -0,0 +1,7 @@
+---
+layout: content
+title: "404: Page not found"
+---
+
+Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. Head back home to try finding it again.
+
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..2ee73d9
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,9 @@
+source "https://rubygems.org"
+
+gem "jekyll", "3.4.3"
+gem "html-proofer"
+gem "rb-fsevent", "0.9.8"
+
+group :jekyll_plugins do
+ gem 'jekyll-livereload'
+end
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..9e9633d
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,88 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ activesupport (5.1.2)
+ concurrent-ruby (~> 1.0, >= 1.0.2)
+ i18n (~> 0.7)
+ minitest (~> 5.1)
+ tzinfo (~> 1.1)
+ addressable (2.5.1)
+ public_suffix (~> 2.0, >= 2.0.2)
+ colorator (1.1.0)
+ colored (1.2)
+ concurrent-ruby (1.0.5)
+ em-websocket (0.5.1)
+ eventmachine (>= 0.12.9)
+ http_parser.rb (~> 0.6.0)
+ ethon (0.10.1)
+ ffi (>= 1.3.0)
+ eventmachine (1.2.3)
+ ffi (1.9.18)
+ forwardable-extended (2.6.0)
+ html-proofer (3.7.2)
+ activesupport (>= 4.2, < 6.0)
+ addressable (~> 2.3)
+ colored (~> 1.2)
+ mercenary (~> 0.3.2)
+ nokogiri (~> 1.7)
+ parallel (~> 1.3)
+ typhoeus (~> 0.7)
+ yell (~> 2.0)
+ http_parser.rb (0.6.0)
+ i18n (0.8.4)
+ jekyll (3.4.3)
+ addressable (~> 2.4)
+ colorator (~> 1.0)
+ jekyll-sass-converter (~> 1.0)
+ jekyll-watch (~> 1.1)
+ kramdown (~> 1.3)
+ liquid (~> 3.0)
+ mercenary (~> 0.3.3)
+ pathutil (~> 0.9)
+ rouge (~> 1.7)
+ safe_yaml (~> 1.0)
+ jekyll-livereload (0.2.2)
+ em-websocket (~> 0.5)
+ jekyll (~> 3.0)
+ jekyll-sass-converter (1.5.0)
+ sass (~> 3.4)
+ jekyll-watch (1.5.0)
+ listen (~> 3.0, < 3.1)
+ kramdown (1.14.0)
+ liquid (3.0.6)
+ listen (3.0.8)
+ rb-fsevent (~> 0.9, >= 0.9.4)
+ rb-inotify (~> 0.9, >= 0.9.7)
+ mercenary (0.3.6)
+ mini_portile2 (2.2.0)
+ minitest (5.10.2)
+ nokogiri (1.8.0)
+ mini_portile2 (~> 2.2.0)
+ parallel (1.11.2)
+ pathutil (0.14.0)
+ forwardable-extended (~> 2.6)
+ public_suffix (2.0.5)
+ rb-fsevent (0.9.8)
+ rb-inotify (0.9.10)
+ ffi (>= 0.5.0, < 2)
+ rouge (1.11.1)
+ safe_yaml (1.0.4)
+ sass (3.4.24)
+ thread_safe (0.3.6)
+ typhoeus (0.8.0)
+ ethon (>= 0.8.0)
+ tzinfo (1.2.3)
+ thread_safe (~> 0.1)
+ yell (2.0.7)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ html-proofer
+ jekyll (= 3.4.3)
+ jekyll-livereload
+ rb-fsevent (= 0.9.8)
+
+BUNDLED WITH
+ 1.15.1
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..c9f7ed1
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2017 Mike JS. Choi
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..b469913
--- /dev/null
+++ b/README.md
@@ -0,0 +1,62 @@
+
+
+
+ A minimalistic Jekyll Theme
+
+
+
+
+
+
+
+
+Paper is a minimal Jekyll theme. Perfect for hosting your personal site, blog, or portfolio on GitHub or self-hosting on your own server. The styling is purposely minimalistic so that you can add your own flare to the website.
+
+Live demo of the theme can be seen [here](https://deadbeef.me/paper-jekyll-theme/). I'm also currently using this theme on my [personal blog](https://www.deadbeef.me).
+
+## Features
+- Compatible with Jekyll 3.x and Github Pages
+- Live local reloading for faster development
+- Responsive layout built-in
+- Supports Jekyll's built-in Sass/SCSS preprocessor
+- Supports Google Analytics
+- Minimum Dependencies
+- Rakefile for automation
+ - `rake check` - Check links/html files of the generated site
+ - `rake clean` - Clean up generated site
+ - `rake post` - Begin a new post in `./_posts`
+ - `rake preview` - Preview with livereload on local machine
+
+## Usage
+```
+git clone https://github.com/mkchoi212/paper-jekyll-theme.git
+bundle install
+rake preview
+```
+
+Then, go to your favorite brower and type in the address `http://127.0.0.1:YOUR_PORT_NUM_HERE` to preview your website.
+
+### Customization
+To customize various details - title/description of the website, your SNS accout names, etc - edit the `_config.yml` file.
+
+### Adding posts
+```
+rake post title="A Title" [date="2012-02-09"] [tags=[tag1,tag2]] [category="category"]
+```
+This will create a markdown file in the default folder where all posts are stored in Jekyll; `_post`.
+
+If you wish to **change the directory where posts are saved**, go to the `Rakefile` and edit the `CONFIG = { 'posts': CUSTOM_PATH_HERE }`. This will allow `rake post` to know where to save the new posts to.
+
+The **drafts** you are working on can be saved in the `_drafts` directory. When you push your code to the server, files in this directory will NOT be included to the list o posts.
+
+# Licnese
+The MIT License (MIT)
+
+Copyright (c) 2017 Mike JS. Choi
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..8e32a57
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,113 @@
+
+#
+## Customize post location and post extensions
+#
+
+baseurl = `cat ./_config.yml | awk '/baseurl/ { print $2 }' | sed 's/\"//g'`
+
+SOURCE = "."
+CONFIG = {
+ 'posts' => File.join(SOURCE, "_posts"),
+ 'post_ext' => "md",
+ 'theme_package_version' => "0.1.0"
+}
+
+#
+## Color console outout support just because :D
+#
+module Colors
+ def colorize(text, color_code)
+ "\033[#{color_code}m#{text}\033[0m"
+ end
+
+ {
+ :black => 30,
+ :red => 31,
+ :green => 32,
+ :yellow => 33,
+ :blue => 34,
+ :cyan => 36,
+ }.each do |key, color_code|
+ define_method key do |text|
+ colorize(text, color_code)
+ end
+ end
+end
+include Colors
+
+#
+## Just typing `rake` will invoke `rake preview`
+#
+task :default => :preview
+load '_rake-configuration.rb' if File.exist?('_rake-configuration.rb')
+
+desc 'Preview with livereload on local machine'
+task :preview => :clean do
+ puts green "Starting livereload server"
+ jekyll('serve -L')
+end
+task :serve => :preview
+
+desc 'Clean up generated site'
+task :clean do
+ cleanup
+end
+
+desc 'Check links for generated site'
+task :check do
+ STDOUT.sync = true
+ cleanup
+ jekyll("build -d _site#{baseurl}")
+ puts cyan "Running html proofer..."
+ puts `htmlproofer --assume-extension --alt-ignore '/.*/' ./_site`
+end
+
+# Usage: rake post title="A Title" [date="2012-02-09"] [tags=[tag1,tag2]] [category="category"]
+desc "Begin a new post in #{CONFIG['posts']}"
+task :post do
+ abort("rake aborted: '#{CONFIG['posts']}' directory not found.") unless FileTest.directory?(CONFIG['posts'])
+ title = ENV["title"] || "new-post"
+ tags = ENV["tags"] || "[]"
+ category = ENV["category"] || ""
+ category = "\"#{category.gsub(/-/,' ')}\"" if !category.empty?
+ slug = title.downcase.strip.gsub(' ', '-').gsub(/[^\w-]/, '')
+ begin
+ date = (ENV['date'] ? Time.parse(ENV['date']) : Time.now).strftime('%Y-%m-%d')
+ rescue => e
+ puts red "Error - date format must be YYYY-MM-DD, please check you typed it correctly!"
+ exit -1
+ end
+ filename = File.join(CONFIG['posts'], "#{date}-#{slug}.#{CONFIG['post_ext']}")
+ if File.exist?(filename)
+ abort("rake aborted!") if ask("#{filename} already exists. Do you want to overwrite?", ['y', 'n']) == 'n'
+ end
+
+ puts cyan "Creating new post: #{filename}"
+ open(filename, 'w') do |post|
+ post.puts "---"
+ post.puts "layout: post"
+ post.puts "title: \"#{title.gsub(/-/,' ')}\""
+ post.puts 'description: ""'
+ post.puts "category: #{category}"
+ post.puts "tags: #{tags}"
+ post.puts "---"
+ post.puts "{% include JB/setup %}"
+ end
+end # task :post
+
+#
+## General support functions
+#
+
+def cleanup
+ sh 'rm -rf _site'
+end
+
+def jekyll(directives = '')
+ sh 'jekyll ' + directives
+end
+
+def rake_running
+ `ps | grep 'rake' | grep -v 'grep' | wc -l`.to_i > 1
+end
+
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..7bba480
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,26 @@
+# Site settings
+title: "Paper Jekyll Theme"
+description: >
+ Write a description of your website here.
+
+author: Johnny Appleseed
+email: johnny@appleseed.com
+twitter_username:
+github_username:
+
+baseurl: "/paper-jekyll-theme" # the subpath of your site, e.g. /blog
+url: "https://deadbeef.me" # the base hostname & protocol for your site
+
+google_analytics_id: UA-1111111111-1
+disqus_id:
+
+# Build settings
+include: [_pages]
+markdown: kramdown
+permalink: /:year/:month/:title
+
+sass:
+ style: compressed
+
+exclude: [vendor]
+
diff --git a/_includes/analytics.html b/_includes/analytics.html
new file mode 100644
index 0000000..f792fa7
--- /dev/null
+++ b/_includes/analytics.html
@@ -0,0 +1,13 @@
+{% if site.google_analytics_id %}
+
+
+
+{% endif %}
diff --git a/_includes/disqus.html b/_includes/disqus.html
new file mode 100644
index 0000000..c13b777
--- /dev/null
+++ b/_includes/disqus.html
@@ -0,0 +1,18 @@
+
+
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..5ea9271
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,4 @@
+
diff --git a/_includes/head.html b/_includes/head.html
new file mode 100644
index 0000000..6da047c
--- /dev/null
+++ b/_includes/head.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+ {% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}
+
+
+
+
+
+
+
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..235a065
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,12 @@
+
+
+
+
+ {% if page.comments != false and site.disqus_id %}
+
+
+ {% include disqus.html %}
+
+ {% endif %}
+
diff --git a/_pages/about.md b/_pages/about.md
new file mode 100644
index 0000000..018dbf9
--- /dev/null
+++ b/_pages/about.md
@@ -0,0 +1,22 @@
+---
+layout: content
+title: About
+permalink: /about/
+---
+Hi, I'm Johnny and I live in the Shire. Thanks for visiting my site.
+
+I program and write about software development when I have the time. More information can be found through LinkedIn.
+
+----
+
+## The Website
+This site was made on an [Apple MBP](https://www.apple.com/) powered by [Jekyll](https://jekyllrb.com) on [Github Pages](https://pages.github.com).
+I'd love to hear your feedback on this site and my work.
+
+----
+
+## Etcetera
+
+- [Instagram](https://www.instagram.com/) for 📸
+- [Facebook](https://www.facebook.com/) for 🕺
+
diff --git a/_pages/projects.md b/_pages/projects.md
new file mode 100644
index 0000000..3343083
--- /dev/null
+++ b/_pages/projects.md
@@ -0,0 +1,18 @@
+---
+layout: content
+title: Projects
+permalink: /projects/
+---
+
+Show off your projects here!
+- [Awesome Project]()
+- [Cool Project]()
+- [New Project]()
+- [Old Project]()
+- [Hard Project]()
+- [School Project]()
+- [Project's Project]()
+
+# Talks
+- How to ????
+
diff --git a/_posts/2016-08-15-style-test.md b/_posts/2016-08-15-style-test.md
new file mode 100644
index 0000000..e4fff6f
--- /dev/null
+++ b/_posts/2016-08-15-style-test.md
@@ -0,0 +1,115 @@
+---
+layout: post
+title: "A Full and Comprehensive Style Test"
+description: "Test post for style"
+date: 2016-08-15
+tags: test, style
+comments: true
+---
+
+Below is just about everything you'll need to style in the theme. Check the source code to see the many embedded elements within paragraphs.
+
+---
+
+## 1. Header
+
+# Header 1
+
+## Header 2
+
+### Header 3
+
+#### Header 4
+
+##### Header 5
+
+###### Header 6
+
+### 1-1. Header Alignment
+
+##### Left(Default)
+
+##### Center
+{: .center}
+
+##### Right
+{: .right}
+
+## 2. Body Text
+
+Lorem ipsum dolor sit amet, [test link](https://www.google.com) adipiscing elit. **This is strong.** Nullam dignissim convallis est. Quisque aliquam. *This is emphasized.* Donec faucibus. Nunc iaculis suscipit dui. 53 = 125. Water is H2O. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Underline. Maecenas ornare tortor. Donec sed tellus eget `COPY filename` sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, Dinner’s at 5:00. commodo vitae, feugiat in, nunc. Morbi imperdiet augue mark element quis tellus.
+
+## 3. Images
+
+![Large example image](http://placehold.it/800x400 "Large example image")
+
+![Medium example image](http://placehold.it/400x200 "Medium example image")
+![Small example image](http://placehold.it/200x200 "Small example image")
+
+### 3-1. Image Alignment
+
+![Center example image](http://placehold.it/200x200 "Center")
+{: .center}
+
+## 4. Blockquotes
+
+> Lorem ipsum dolor sit amet, test link adipiscing elit. Nullam dignissim convallis est. Quisque aliquam.
+
+## 5. List Types
+
+### Unordered List
+
+* Lorem ipsum dolor sit amet, consectetur adipiscing elit.
+* Nam ultrices nunc in nisi pellentesque ultricies. Cras scelerisque ipsum in ante laoreet viverra. Pellentesque eget quam et augue molestie tincidunt ac ut ex. Sed quis velit vulputate, rutrum nisl sit amet, molestie neque. Vivamus sed augue at turpis suscipit fringilla.
+* Integer pretium nisl vitae justo aliquam, at varius nisi blandit.
+ 1. Nunc vehicula nulla ac odio gravida vestibulum sed nec mauris.
+ 2. Duis at diam eget arcu dapibus consequat.
+* Etiam vel elit in purus iaculis pretium.
+
+### Ordered List
+
+1. Quisque ullamcorper leo non ex pretium, in fermentum libero imperdiet.
+2. Donec eu nulla euismod, rhoncus ipsum nec, faucibus elit.
+3. Nam blandit purus gravida, accumsan sem in, lacinia orci.
+ * Duis congue dui nec nisi posuere, at luctus velit semper.
+ * Suspendisse in lorem id lacus elementum pretium nec vel nibh.
+4. Aliquam eget ipsum laoreet, maximus risus vitae, iaculis leo.
+
+### Definition Lists
+
+kramdown
+: A Markdown-superset converter
+
+Maruku
+: Another Markdown-superset converter
+
+## 6. Tables
+
+| Header1 | Header2 | Header3 |
+|:--------|:-------:|--------:|
+| cell1 | cell2 | cell3 |
+| cell4 | cell5 | cell6 |
+|----
+| cell1 | cell2 | cell3 |
+| cell4 | cell5 | cell6 |
+|=====
+| Foot1 | Foot2 | Foot3
+
+
+## 7. Code Snippets
+
+### Highlighted Code Blocks
+
+```css
+#container {
+ float: left;
+ margin: 0 -240px 0 0;
+ width: 100%;
+}
+```
+
+### Standard code block
+
+
+
This is great isn't it?
+
diff --git a/_posts/2017-01-01-readability.md b/_posts/2017-01-01-readability.md
new file mode 100755
index 0000000..df9a9a9
--- /dev/null
+++ b/_posts/2017-01-01-readability.md
@@ -0,0 +1,45 @@
+---
+layout: post
+title: "Testing Readability with a Bunch of Text"
+description: "A ton of text to test readability."
+date: 2017-01-01
+tags: sample post, readability, test, intro
+comments: true
+---
+
+Portland in shoreditch Vice, labore typewriter pariatur hoodie fap sartorial Austin. Pinterest literally occupy Schlitz forage. Odio ad blue bottle vinyl, 90's narwhal commodo bitters pour-over nostrud. Ugh est hashtag in, fingerstache adipisicing laboris esse Pinterest shabby chic Portland. Shoreditch bicycle rights anim, flexitarian laboris put a bird on it vinyl cupidatat narwhal. Hashtag artisan skateboard, flannel Bushwick nesciunt salvia aute fixie do plaid post-ironic dolor McSweeney's. Cliche pour-over chambray nulla four loko skateboard sapiente hashtag.
+
+Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater ullamco quinoa ennui assumenda, sapiente occupy delectus lo-fi. Ea fashion axe Marfa cillum aliquip. Retro Bushwick keytar cliche. Before they sold out sustainable gastropub Marfa readymade, ethical Williamsburg skateboard brunch qui consectetur gentrify semiotics. Mustache cillum irony, fingerstache magna pour-over keffiyeh tousled selfies.
+
+## Cupidatat 90's lo-fi authentic try-hard
+
+In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's.
+
+* Sartorial hoodie
+* Labore viral forage
+* Tote bag selvage
+* DIY exercitation et id ugh tumblr church-key
+
+Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr.
+
+Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Richardson pour-over gluten-free. Banksy american apparel in selfies, biodiesel flexitarian organic meh wolf quinoa gentrify banjo kogi. Readymade tofu ex, scenester dolor umami fingerstache occaecat fashion axe Carles jean shorts minim. Keffiyeh fashion axe nisi Godard mlkshk dolore. Lomo you probably haven't heard of them eu non, Odd Future Truffaut pug keytar meggings McSweeney's Pinterest cred. Etsy literally aute esse, eu bicycle rights qui meggings fanny pack. Gentrify leggings pug flannel duis.
+
+## Forage occaecat cardigan qui
+
+Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole.
+
+> Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache.
+
+Tote bag asymmetrical elit sunt. Occaecat authentic Marfa, hella McSweeney's next level irure veniam master cleanse. Sed hoodie letterpress artisan wolf leggings, 3 wolf moon commodo ullamco. Anim occupy ea labore Terry Richardson. Tofu ex master cleanse in whatever pitchfork banh mi, occupy fugiat fanny pack Austin authentic. Magna fugiat 3 wolf moon, labore McSweeney's sustainable vero consectetur. Gluten-free disrupt enim, aesthetic fugiat jean shorts trust fund keffiyeh magna try-hard.
+
+## Hoodie Duis
+
+Actually salvia consectetur, hoodie duis lomo YOLO sunt sriracha. Aute pop-up brunch farm-to-table odio, salvia irure occaecat. Sriracha small batch literally skateboard. Echo Park nihil hoodie, aliquip forage artisan laboris. Trust fund reprehenderit nulla locavore. Stumptown raw denim kitsch, keffiyeh nulla twee dreamcatcher fanny pack ullamco 90's pop-up est culpa farm-to-table. Selfies 8-bit do pug odio.
+
+### Thundercats Ho!
+
+Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfies mollit biodiesel duis odio pop-up. Banksy 3 wolf moon try-hard, sapiente enim stumptown deep v ad letterpress. Squid beard brunch, exercitation raw denim yr sint direct trade. Raw denim narwhal id, flannel DIY McSweeney's seitan. Letterpress artisan bespoke accusamus, meggings laboris consequat Truffaut qui in seitan. Sustainable cornhole Schlitz, twee Cosby sweater banh mi deep v forage letterpress flannel whatever keffiyeh. Sartorial cred irure, semiotics ethical sed blue bottle nihil letterpress.
+
+Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic.
+
+Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam.
diff --git a/_posts/2017-07-20-code-highlighting.md b/_posts/2017-07-20-code-highlighting.md
new file mode 100755
index 0000000..fb15be0
--- /dev/null
+++ b/_posts/2017-07-20-code-highlighting.md
@@ -0,0 +1,75 @@
+---
+layout: post
+title: "Syntax Highlighting Post"
+description: "Demo post displaying the various ways of highlighting code in Markdown."
+date: 2017-07-20
+tags: sample post, code, highlighting
+comments: true
+---
+
+
+Syntax highlighting is a feature that displays source code, in different colors and fonts according to the category of terms. This feature facilitates writing in a structured language such as a programming language or a markup language as both structures and syntax errors are visually distinct. Highlighting does not affect the meaning of the text itself; it is intended only for human readers.[^1]
+
+[^1]:
+
+### Highlighted Code Blocks
+
+To modify styling and highlight colors edit `/_sass/_highlighter.scss`.
+
+
+```css
+#container {
+ float: left;
+ margin: 0 -240px 0 0;
+ width: 100%;
+}
+```
+
+```html
+{% raw %}{% endraw %}
+```
+
+```ruby
+module Jekyll
+ class TagIndex < Page
+ def initialize(site, base, dir, tag)
+ @site = site
+ @base = base
+ @dir = dir
+ @name = 'index.html'
+ self.process(@name)
+ self.read_yaml(File.join(base, '_layouts'), 'tag_index.html')
+ self.data['tag'] = tag
+ tag_title_prefix = site.config['tag_title_prefix'] || 'Tagged: '
+ tag_title_suffix = site.config['tag_title_suffix'] || '–'
+ self.data['title'] = "#{tag_title_prefix}#{tag}"
+ self.data['description'] = "An archive of posts tagged #{tag}."
+ end
+ end
+end
+```
+
+
+### Standard Code Block
+
+ {% raw %}{% endraw %}
+
+### GitHub Gist Embed
+
+An example of a Gist embed below.
+
+
diff --git a/_posts/2017-07-21-quick-start.md b/_posts/2017-07-21-quick-start.md
new file mode 100644
index 0000000..320a64a
--- /dev/null
+++ b/_posts/2017-07-21-quick-start.md
@@ -0,0 +1,75 @@
+---
+layout: post
+title: "Quick Start Guide"
+description: "How to setup and use the blog"
+date: 2017-07-21
+tags: jekyll
+comments: true
+---
+
+
+
+