├── favicon.ico
├── assets
├── ad.png
├── icons
│ ├── icon_32.png
│ ├── icon_48.png
│ ├── icon_128.png
│ ├── icon_144.png
│ ├── icon_152.png
│ └── icon_256.png
├── images
│ ├── profile.png
│ └── profile.webp
└── manifest.json
├── img
└── blog
│ ├── 1
│ ├── 1.png
│ └── 2.png
│ ├── 2
│ ├── ie.jpg
│ ├── firefox.jpg
│ └── opera.jpg
│ ├── 6
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ └── viewport.gif
│ ├── 7
│ ├── 1.png
│ ├── 2.png
│ └── 3.png
│ ├── 10
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ └── 5.png
│ ├── 11
│ └── Style_Switcher.gif
│ ├── 12
│ └── border-radius.png
│ ├── 13
│ └── dn1.png
│ ├── 14
│ ├── 1.gif
│ ├── 2.gif
│ ├── 3.gif
│ ├── viewportvsbody.jpg
│ └── viewportvsbody2.png
│ ├── 15
│ ├── 1.3.2.png
│ ├── 1.4.1.png
│ ├── 1.4.4.gif
│ ├── 2.1.1.gif
│ ├── 2.2.1.gif
│ ├── 2.4.3.png
│ ├── 2.4.5.gif
│ ├── 3.3.1.png
│ └── 3.3.2.png
│ ├── 16
│ ├── not.png
│ ├── empty.png
│ ├── first.png
│ ├── lang1.png
│ ├── lang2.png
│ ├── lang3.png
│ └── target.gif
│ ├── 19
│ ├── 1-border.jpg
│ ├── 1-margin.jpg
│ ├── 2-border.jpg
│ ├── 1-content.jpg
│ ├── 1-padding.jpg
│ ├── 2-content.jpg
│ └── 2-padding.jpg
│ ├── 20
│ ├── navigation.png
│ └── navigation-tab.gif
│ ├── 21
│ ├── wo-mousemove.gif
│ └── with-mousemove.gif
│ ├── 22
│ ├── display-position.png
│ └── visibility-opacity.png
│ ├── 25
│ ├── 1.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── 3.1.png
│ ├── 3.2.png
│ ├── clear-left.png
│ └── clear-only-left.png
│ ├── 26
│ └── hsl.png
│ ├── 27
│ ├── events.png
│ ├── tweet.png
│ └── campaigns.png
│ ├── 28
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── float-problem.gif
│ └── float-solution.gif
│ ├── 29
│ └── fitfam.png
│ ├── 30
│ ├── style-js.png
│ ├── style-nojs.png
│ └── styleception.png
│ ├── 31
│ └── divsectionarticle.jpg
│ ├── 34
│ ├── 1.jpg
│ ├── 2.png
│ ├── 3.png
│ └── 4.png
│ └── 36
│ ├── outset.gif
│ ├── repeat.gif
│ ├── slice-1.png
│ ├── slice-2.png
│ ├── slice-3.png
│ ├── slice-4.png
│ ├── width-1.png
│ └── width-2.png
├── .gitignore
├── README.md
├── partials
├── icon-menu.hbs
├── icon-bookmark.hbs
├── site-nav.hbs
├── pagination.hbs
├── post-excerpt.hbs
├── site-search.hbs
├── ad.hbs
├── disqus.hbs
├── post-suggestions.hbs
├── icon-rss.hbs
├── post-share.hbs
├── icon-cancel.hbs
├── icon-search.hbs
├── icon-facebook.hbs
├── icon-twitter.hbs
├── site-sidebar.hbs
├── icon-youtube.hbs
├── subscribe.hbs
├── icon-reddit.hbs
└── bitsofcode-logo.hbs
├── index.hbs
├── src
├── scss
│ ├── offline.scss
│ ├── _ads.scss
│ ├── _variables.scss
│ ├── _form.scss
│ ├── global.scss
│ ├── _subscribe.scss
│ ├── _ghost-required.scss
│ ├── _reset.scss
│ ├── _utils.scss
│ ├── _typography.scss
│ ├── _syntax-highlighting.scss
│ ├── _layout.scss
│ └── _post.scss
├── js
│ ├── global
│ │ ├── main.js
│ │ ├── register-sw.js
│ │ └── dialog.js
│ ├── post
│ │ ├── save-article.js
│ │ └── prisim.js
│ └── search.js
└── sw.js
├── tag.hbs
├── page.hbs
├── page-subscribe.hbs
├── release.js
├── package.json
├── page-search.hbs
├── post.hbs
├── gulpfile.js
├── page-offline.hbs
└── default.hbs
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/favicon.ico
--------------------------------------------------------------------------------
/assets/ad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/assets/ad.png
--------------------------------------------------------------------------------
/img/blog/1/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/1/1.png
--------------------------------------------------------------------------------
/img/blog/1/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/1/2.png
--------------------------------------------------------------------------------
/img/blog/10/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/10/1.png
--------------------------------------------------------------------------------
/img/blog/10/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/10/2.png
--------------------------------------------------------------------------------
/img/blog/10/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/10/3.png
--------------------------------------------------------------------------------
/img/blog/10/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/10/4.png
--------------------------------------------------------------------------------
/img/blog/10/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/10/5.png
--------------------------------------------------------------------------------
/img/blog/14/1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/14/1.gif
--------------------------------------------------------------------------------
/img/blog/14/2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/14/2.gif
--------------------------------------------------------------------------------
/img/blog/14/3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/14/3.gif
--------------------------------------------------------------------------------
/img/blog/2/ie.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/2/ie.jpg
--------------------------------------------------------------------------------
/img/blog/25/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/25/1.png
--------------------------------------------------------------------------------
/img/blog/25/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/25/4.png
--------------------------------------------------------------------------------
/img/blog/25/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/25/5.png
--------------------------------------------------------------------------------
/img/blog/25/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/25/6.png
--------------------------------------------------------------------------------
/img/blog/28/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/28/1.png
--------------------------------------------------------------------------------
/img/blog/28/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/28/2.png
--------------------------------------------------------------------------------
/img/blog/28/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/28/3.png
--------------------------------------------------------------------------------
/img/blog/34/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/34/1.jpg
--------------------------------------------------------------------------------
/img/blog/34/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/34/2.png
--------------------------------------------------------------------------------
/img/blog/34/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/34/3.png
--------------------------------------------------------------------------------
/img/blog/34/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/34/4.png
--------------------------------------------------------------------------------
/img/blog/6/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/6/1.png
--------------------------------------------------------------------------------
/img/blog/6/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/6/2.png
--------------------------------------------------------------------------------
/img/blog/6/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/6/3.png
--------------------------------------------------------------------------------
/img/blog/6/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/6/4.png
--------------------------------------------------------------------------------
/img/blog/7/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/7/1.png
--------------------------------------------------------------------------------
/img/blog/7/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/7/2.png
--------------------------------------------------------------------------------
/img/blog/7/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/7/3.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
3 | # built
4 | assets/built
5 | /sw.js
6 | bitsofcode-ghost.zip
7 |
--------------------------------------------------------------------------------
/img/blog/13/dn1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/13/dn1.png
--------------------------------------------------------------------------------
/img/blog/16/not.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/16/not.png
--------------------------------------------------------------------------------
/img/blog/25/3.1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/25/3.1.png
--------------------------------------------------------------------------------
/img/blog/25/3.2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/25/3.2.png
--------------------------------------------------------------------------------
/img/blog/26/hsl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/26/hsl.png
--------------------------------------------------------------------------------
/img/blog/15/1.3.2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/15/1.3.2.png
--------------------------------------------------------------------------------
/img/blog/15/1.4.1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/15/1.4.1.png
--------------------------------------------------------------------------------
/img/blog/15/1.4.4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/15/1.4.4.gif
--------------------------------------------------------------------------------
/img/blog/15/2.1.1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/15/2.1.1.gif
--------------------------------------------------------------------------------
/img/blog/15/2.2.1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/15/2.2.1.gif
--------------------------------------------------------------------------------
/img/blog/15/2.4.3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/15/2.4.3.png
--------------------------------------------------------------------------------
/img/blog/15/2.4.5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/15/2.4.5.gif
--------------------------------------------------------------------------------
/img/blog/15/3.3.1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/15/3.3.1.png
--------------------------------------------------------------------------------
/img/blog/15/3.3.2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/15/3.3.2.png
--------------------------------------------------------------------------------
/img/blog/16/empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/16/empty.png
--------------------------------------------------------------------------------
/img/blog/16/first.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/16/first.png
--------------------------------------------------------------------------------
/img/blog/16/lang1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/16/lang1.png
--------------------------------------------------------------------------------
/img/blog/16/lang2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/16/lang2.png
--------------------------------------------------------------------------------
/img/blog/16/lang3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/16/lang3.png
--------------------------------------------------------------------------------
/img/blog/16/target.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/16/target.gif
--------------------------------------------------------------------------------
/img/blog/2/firefox.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/2/firefox.jpg
--------------------------------------------------------------------------------
/img/blog/2/opera.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/2/opera.jpg
--------------------------------------------------------------------------------
/img/blog/27/events.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/27/events.png
--------------------------------------------------------------------------------
/img/blog/27/tweet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/27/tweet.png
--------------------------------------------------------------------------------
/img/blog/29/fitfam.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/29/fitfam.png
--------------------------------------------------------------------------------
/img/blog/36/outset.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/36/outset.gif
--------------------------------------------------------------------------------
/img/blog/36/repeat.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/36/repeat.gif
--------------------------------------------------------------------------------
/assets/icons/icon_32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/assets/icons/icon_32.png
--------------------------------------------------------------------------------
/assets/icons/icon_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/assets/icons/icon_48.png
--------------------------------------------------------------------------------
/img/blog/19/1-border.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/19/1-border.jpg
--------------------------------------------------------------------------------
/img/blog/19/1-margin.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/19/1-margin.jpg
--------------------------------------------------------------------------------
/img/blog/19/2-border.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/19/2-border.jpg
--------------------------------------------------------------------------------
/img/blog/30/style-js.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/30/style-js.png
--------------------------------------------------------------------------------
/img/blog/36/slice-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/36/slice-1.png
--------------------------------------------------------------------------------
/img/blog/36/slice-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/36/slice-2.png
--------------------------------------------------------------------------------
/img/blog/36/slice-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/36/slice-3.png
--------------------------------------------------------------------------------
/img/blog/36/slice-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/36/slice-4.png
--------------------------------------------------------------------------------
/img/blog/36/width-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/36/width-1.png
--------------------------------------------------------------------------------
/img/blog/36/width-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/36/width-2.png
--------------------------------------------------------------------------------
/img/blog/6/viewport.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/6/viewport.gif
--------------------------------------------------------------------------------
/assets/icons/icon_128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/assets/icons/icon_128.png
--------------------------------------------------------------------------------
/assets/icons/icon_144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/assets/icons/icon_144.png
--------------------------------------------------------------------------------
/assets/icons/icon_152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/assets/icons/icon_152.png
--------------------------------------------------------------------------------
/assets/icons/icon_256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/assets/icons/icon_256.png
--------------------------------------------------------------------------------
/assets/images/profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/assets/images/profile.png
--------------------------------------------------------------------------------
/assets/images/profile.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/assets/images/profile.webp
--------------------------------------------------------------------------------
/img/blog/19/1-content.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/19/1-content.jpg
--------------------------------------------------------------------------------
/img/blog/19/1-padding.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/19/1-padding.jpg
--------------------------------------------------------------------------------
/img/blog/19/2-content.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/19/2-content.jpg
--------------------------------------------------------------------------------
/img/blog/19/2-padding.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/19/2-padding.jpg
--------------------------------------------------------------------------------
/img/blog/20/navigation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/20/navigation.png
--------------------------------------------------------------------------------
/img/blog/25/clear-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/25/clear-left.png
--------------------------------------------------------------------------------
/img/blog/27/campaigns.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/27/campaigns.png
--------------------------------------------------------------------------------
/img/blog/30/style-nojs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/30/style-nojs.png
--------------------------------------------------------------------------------
/img/blog/12/border-radius.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/12/border-radius.png
--------------------------------------------------------------------------------
/img/blog/21/wo-mousemove.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/21/wo-mousemove.gif
--------------------------------------------------------------------------------
/img/blog/28/float-problem.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/28/float-problem.gif
--------------------------------------------------------------------------------
/img/blog/30/styleception.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/30/styleception.png
--------------------------------------------------------------------------------
/img/blog/11/Style_Switcher.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/11/Style_Switcher.gif
--------------------------------------------------------------------------------
/img/blog/14/viewportvsbody.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/14/viewportvsbody.jpg
--------------------------------------------------------------------------------
/img/blog/14/viewportvsbody2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/14/viewportvsbody2.png
--------------------------------------------------------------------------------
/img/blog/20/navigation-tab.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/20/navigation-tab.gif
--------------------------------------------------------------------------------
/img/blog/21/with-mousemove.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/21/with-mousemove.gif
--------------------------------------------------------------------------------
/img/blog/22/display-position.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/22/display-position.png
--------------------------------------------------------------------------------
/img/blog/25/clear-only-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/25/clear-only-left.png
--------------------------------------------------------------------------------
/img/blog/28/float-solution.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/28/float-solution.gif
--------------------------------------------------------------------------------
/img/blog/22/visibility-opacity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/22/visibility-opacity.png
--------------------------------------------------------------------------------
/img/blog/31/divsectionarticle.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ireade/bitsofcode-ghost/HEAD/img/blog/31/divsectionarticle.jpg
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Ghost theme for bitsofcode
2 |
3 | **I'm making this open source for learning purposes, please don't copy it :)**
4 |
--------------------------------------------------------------------------------
/partials/icon-menu.hbs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/index.hbs:
--------------------------------------------------------------------------------
1 | {{!< default}}
2 |
3 | Latest Posts
5 | {{#foreach posts}}
6 | {{> post-excerpt}}
7 | {{/foreach}}
8 |
9 | {{> subscribe}}
10 |
11 | {{pagination}}
12 | Posts in category: "{{tag.name}}"
6 | {{title}}
6 |