├── index.html ├── _layouts ├── page.html ├── post.html ├── default.html └── home.html ├── favicon.ico ├── .gitignore ├── screenshot.png ├── assets ├── images │ ├── icon-512.png │ └── divider.svg ├── fonts │ ├── eb-garamond-v9-latin-regular.eot │ ├── eb-garamond-v9-latin-regular.ttf │ ├── eb-garamond-v9-latin-regular.woff │ ├── eb-garamond-v9-latin-regular.woff2 │ └── OFL.txt └── css │ └── main.scss ├── _includes ├── back-link.html ├── search.html ├── post-excerpt.html ├── google-analytics.html ├── post-list-item.html ├── menu.html └── disqus-comments.html ├── Gemfile ├── _data └── menu.yml ├── _sass ├── _mixins.scss ├── _variables.scss ├── _masthead.scss ├── _footnotes.scss ├── _search.scss ├── _menu.scss ├── _font.scss ├── _reset.scss ├── _article.scss ├── _post-list.scss ├── _base.scss └── _syntax-highlighting.scss ├── _posts ├── 2018-08-12-not-all-posts.md ├── 2012-07-24-the-adventure-of-the-veiled-lodger.md ├── 2012-06-09-the-adventure-of-the-dying-detective.md ├── 2018-08-11-the-adventure-of-charles-augustus-milverton.md └── 2011-11-11-the-adventure-of-the-cardboard-box.md ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── hitchens-theme.gemspec ├── LICENSE.txt ├── about.md ├── feed.json ├── feed.xml ├── _config.yml ├── CODE_OF_CONDUCT.md └── README.md /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: Home 3 | layout: home 4 | --- -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patdryburgh/hitchens/HEAD/favicon.ico -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | .sass-cache 4 | .jekyll-cache 5 | _site 6 | Gemfile.lock -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patdryburgh/hitchens/HEAD/screenshot.png -------------------------------------------------------------------------------- /assets/images/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patdryburgh/hitchens/HEAD/assets/images/icon-512.png -------------------------------------------------------------------------------- /_includes/back-link.html: -------------------------------------------------------------------------------- 1 | 2 | 〈 Home 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | gemspec 5 | 6 | # for demo site 7 | gem "jekyll-paginate" -------------------------------------------------------------------------------- /assets/fonts/eb-garamond-v9-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patdryburgh/hitchens/HEAD/assets/fonts/eb-garamond-v9-latin-regular.eot -------------------------------------------------------------------------------- /assets/fonts/eb-garamond-v9-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patdryburgh/hitchens/HEAD/assets/fonts/eb-garamond-v9-latin-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/eb-garamond-v9-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patdryburgh/hitchens/HEAD/assets/fonts/eb-garamond-v9-latin-regular.woff -------------------------------------------------------------------------------- /assets/fonts/eb-garamond-v9-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patdryburgh/hitchens/HEAD/assets/fonts/eb-garamond-v9-latin-regular.woff2 -------------------------------------------------------------------------------- /_data/menu.yml: -------------------------------------------------------------------------------- 1 | - title: About 2 | url: /about.html 3 | 4 | - title: Source 5 | url: https://github.com/patdryburgh/hitchens 6 | 7 | - title: Designer 8 | url: http://patdryburgh.com -------------------------------------------------------------------------------- /_sass/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin divider { 2 | border: 0; 3 | display: block; 4 | width: 152px; 5 | height: 12px; 6 | margin: .5em auto 0; 7 | background: url(#{$asset_url}/images/divider.svg) no-repeat top center; 8 | } -------------------------------------------------------------------------------- /_posts/2018-08-12-not-all-posts.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "" 3 | layout: post 4 | author: "Pat Dryburgh" 5 | categories: opinion 6 | --- 7 | 8 | Not all posts need a title. 9 | 10 | 11 | 12 | They sometimes just want to be left alone. -------------------------------------------------------------------------------- /assets/css/main.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @charset "utf-8"; 5 | 6 | $asset_url: '{{ '/assets' | absolute_url }}'; 7 | 8 | @import 9 | "reset", 10 | "variables", 11 | "syntax-highlighting", 12 | "mixins", 13 | "font", 14 | "base", 15 | "masthead", 16 | "menu", 17 | "post-list", 18 | "article", 19 | "footnotes", 20 | "search" 21 | ; -------------------------------------------------------------------------------- /_sass/_variables.scss: -------------------------------------------------------------------------------- 1 | $brand-color: #fede00; 2 | $highlight: lighten($brand-color, 35%); 3 | $text-color: #0b0404; 4 | $muted-text-color: #64644B; 5 | $font-family: "EB Garamond", Garamond, "Times New Roman", serif; 6 | 7 | $on-bigphone: 375px; 8 | $on-tablet: 768px; 9 | $on-laptop: 960px; 10 | $on-desktop: 1200px; -------------------------------------------------------------------------------- /_includes/search.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /_sass/_masthead.scss: -------------------------------------------------------------------------------- 1 | .site-masthead { 2 | box-sizing: border-box; 3 | position: relative; 4 | text-align: center; 5 | } 6 | 7 | .site-masthead h1 { 8 | font-size: 3em; 9 | margin-bottom: 0; 10 | margin-top: 1em; 11 | padding: 0 2rem; 12 | @media (min-width: $on-tablet) { 13 | font-size: 6em; 14 | } 15 | } 16 | 17 | .site-masthead h2 { 18 | color: $muted-text-color; 19 | font-size: 1.25em; 20 | margin: 0; 21 | padding: 0 2rem; 22 | @media (min-width: $on-tablet) { 23 | font-size: 3em; 24 | } 25 | } -------------------------------------------------------------------------------- /_includes/post-excerpt.html: -------------------------------------------------------------------------------- 1 | {% capture excerpt %} 2 | {{ post.excerpt | replace: "", "" | replace: "
", "" }} 3 | {% endcapture %} 4 | 5 | {% if site.excerpt_length %} 6 | {% assign excerpt_length = site.excerpt_length %} 7 | {% else %} 8 | {% assign excerpt_length = 20 %} 9 | {% endif %} 10 | 11 | {% assign excerpt_size = excerpt | size %} 12 | 13 | 14 | {% if excerpt_size > 140 and excerpt_length > 0 %} 15 | {{ excerpt | truncatewords: excerpt_length, '…' }} 16 | {% else %} 17 | {{ excerpt }} 18 | {% endif %} 19 | -------------------------------------------------------------------------------- /_includes/google-analytics.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/post-list-item.html: -------------------------------------------------------------------------------- 1 |
10 |