├── .gitignore ├── .travis.yml ├── 404.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── _config.yml ├── _includes ├── analytics.html ├── disqus.html ├── footer.html ├── head.html └── header.html ├── _layouts ├── content.html ├── default.html ├── page.html └── post.html ├── _pages ├── about.md └── projects.md ├── _posts ├── 2016-08-15-style-test.md ├── 2017-01-01-readability.md ├── 2017-07-20-code-highlighting.md └── 2017-07-21-quick-start.md ├── _sass ├── base │ └── _reset.scss ├── components │ ├── _archives.scss │ ├── _article.scss │ ├── _page.scss │ └── _tag.scss ├── helpers │ ├── _mixins.scss │ └── _variables.scss ├── utilities │ ├── _layout.scss │ └── _separator.scss └── vendor │ └── _highlight.scss ├── assets └── paper-cover-photo.png ├── css └── main.scss ├── favicon.ico ├── feed.xml └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/.travis.yml -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/404.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/Rakefile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_includes/analytics.html -------------------------------------------------------------------------------- /_includes/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_includes/disqus.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_layouts/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_layouts/content.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_pages/about.md -------------------------------------------------------------------------------- /_pages/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_pages/projects.md -------------------------------------------------------------------------------- /_posts/2016-08-15-style-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_posts/2016-08-15-style-test.md -------------------------------------------------------------------------------- /_posts/2017-01-01-readability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_posts/2017-01-01-readability.md -------------------------------------------------------------------------------- /_posts/2017-07-20-code-highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_posts/2017-07-20-code-highlighting.md -------------------------------------------------------------------------------- /_posts/2017-07-21-quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_posts/2017-07-21-quick-start.md -------------------------------------------------------------------------------- /_sass/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_sass/base/_reset.scss -------------------------------------------------------------------------------- /_sass/components/_archives.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_sass/components/_archives.scss -------------------------------------------------------------------------------- /_sass/components/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_sass/components/_article.scss -------------------------------------------------------------------------------- /_sass/components/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_sass/components/_page.scss -------------------------------------------------------------------------------- /_sass/components/_tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_sass/components/_tag.scss -------------------------------------------------------------------------------- /_sass/helpers/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_sass/helpers/_mixins.scss -------------------------------------------------------------------------------- /_sass/helpers/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_sass/helpers/_variables.scss -------------------------------------------------------------------------------- /_sass/utilities/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_sass/utilities/_layout.scss -------------------------------------------------------------------------------- /_sass/utilities/_separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_sass/utilities/_separator.scss -------------------------------------------------------------------------------- /_sass/vendor/_highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/_sass/vendor/_highlight.scss -------------------------------------------------------------------------------- /assets/paper-cover-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/assets/paper-cover-photo.png -------------------------------------------------------------------------------- /css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/css/main.scss -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/favicon.ico -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/feed.xml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkchoi212/paper-jekyll-theme/HEAD/index.html --------------------------------------------------------------------------------