diff --git a/.bowerrc b/.bowerrc
new file mode 100644
index 0000000..cc48978
--- /dev/null
+++ b/.bowerrc
@@ -0,0 +1,3 @@
+{
+ "directory": "assets/vendor"
+}
diff --git a/.bumpedrc b/.bumpedrc
new file mode 100644
index 0000000..e90942b
--- /dev/null
+++ b/.bumpedrc
@@ -0,0 +1,6 @@
+files: [
+ "package.json"
+]
+plugins:
+ prerelease: {}
+ postrelease: {}
\ No newline at end of file
diff --git a/.editorconfig b/.editorconfig
new file mode 100755
index 0000000..0d8138e
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,22 @@
+# http://editorconfig.org
+
+root = true
+
+[*]
+indent_style = space
+indent_size = 2
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+max_line_length = 80
+indent_brace_style = 1TBS
+spaces_around_operators = true
+quote_type = auto
+
+[package.json]
+indent_style = space
+indent_size = 2
+
+[*.md]
+trim_trailing_whitespace = false
diff --git a/.gitattributes b/.gitattributes
new file mode 100755
index 0000000..176a458
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+* text=auto
diff --git a/.gitignore b/.gitignore
new file mode 100755
index 0000000..308e453
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,35 @@
+############################
+# npm
+############################
+node_modules
+npm-debug.log
+
+
+############################
+# tmp, editor & OS files
+############################
+.tmp
+*.swo
+*.swp
+*.swn
+*.swm
+.DS_STORE
+*#
+*~
+.idea
+nbproject
+
+
+############################
+# Tests
+############################
+testApp
+coverage
+
+
+############################
+# Other
+############################
+.node_history
+.sass-cache/
+assets/vendor
diff --git a/.jscsrc b/.jscsrc
new file mode 100755
index 0000000..67ae845
--- /dev/null
+++ b/.jscsrc
@@ -0,0 +1,80 @@
+
+{
+ "disallowSpacesInNamedFunctionExpression": {
+ "beforeOpeningRoundBrace": true
+ },
+ "disallowSpacesInFunctionExpression": {
+ "beforeOpeningRoundBrace": true
+ },
+ "disallowSpacesInAnonymousFunctionExpression": {
+ "beforeOpeningRoundBrace": true
+ },
+ "disallowSpacesInFunctionDeclaration": {
+ "beforeOpeningRoundBrace": true
+ },
+ "disallowEmptyBlocks": true,
+ "disallowSpacesInsideArrayBrackets": true,
+ "disallowSpacesInsideParentheses": true,
+ "disallowQuotedKeysInObjects": true,
+ "disallowSpaceAfterObjectKeys": true,
+ "disallowSpaceAfterPrefixUnaryOperators": true,
+ "disallowSpaceBeforePostfixUnaryOperators": true,
+ "disallowSpaceBeforeBinaryOperators": [
+ ","
+ ],
+ "disallowMixedSpacesAndTabs": true,
+ "disallowTrailingWhitespace": true,
+ "excludeFiles": ["node_modules/**"],
+ "maximumLineLength": 100,
+ "disallowTrailingComma": true,
+ "disallowYodaConditions": true,
+ "disallowKeywords": [
+ "with"
+ ],
+ "disallowMultipleLineBreaks": true,
+ "disallowMultipleVarDecl": true,
+ "requireSpaceBeforeBlockStatements": true,
+ "requireSpacesInConditionalExpression": true,
+ "requireBlocksOnNewline": 1,
+ "requireCommaBeforeLineBreak": true,
+ "requireSpaceBeforeBinaryOperators": true,
+ "requireSpaceAfterBinaryOperators": true,
+ "requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
+ "requireLineFeedAtFileEnd": true,
+ "requireCapitalizedConstructors": true,
+ "requireDotNotation": true,
+ "requireSpacesInForStatement": true,
+ "requireSpaceBetweenArguments": true,
+ "requireCurlyBraces": [
+ "do"
+ ],
+ "requireSpaceBeforeKeywords": [
+ "else"
+ ],
+ "requireSpaceAfterKeywords": [
+ "if",
+ "else",
+ "for",
+ "while",
+ "do",
+ "switch",
+ "case",
+ "return",
+ "try",
+ "catch",
+ "typeof"
+ ],
+ "requirePaddingNewLinesBeforeLineComments": {
+ "allExcept": "firstAfterCurly"
+ },
+ "safeContextKeyword": [
+ "self",
+ "_this"
+ ],
+ "validateLineBreaks": "LF",
+ "validateIndentation": 2,
+ "validateQuoteMarks": {
+ "mark": "'",
+ "escape": true
+ }
+}
diff --git a/.jshintrc b/.jshintrc
new file mode 100755
index 0000000..7cf7831
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,15 @@
+{
+ "node": true, // Defines globals available when your code is running inside of the Node runtime environment
+ "esnext": true, // Tells JSHint that your code uses ECMAScript 6 specific syntax.
+ "bitwise": true, // Prohibits the use of bitwise operators such as ^ (XOR), | (OR) and others.
+ "curly": false, // Always put curly braces around blocks in loops and conditionals
+ "noarg": true, // Prohibits the use of arguments.caller and arguments.callee.
+ "undef": true, // Prohibits the use of explicitly undeclared variables.
+ "unused": "vars", // Warns when you define and never use your variables.
+ "strict": true, // Requires all functions to run in ECMAScript 5's strict mode.
+ "eqnull": true, // Suppresses warnings about == null comparisons
+ "eqeqeq": true, // Prohibits the use of == and != in favor of === and !==.
+ "browser": true, // This option defines globals exposed by modern browsers
+ "mootools": true, // This option defines globals exposed by the MooTools JavaScript framework.
+ "mocha": true // This option defines globals exposed by the "BDD" and "TDD" UIs of the Mocha unit testing framework.
+}
diff --git a/.npmignore b/.npmignore
new file mode 100755
index 0000000..7ec7473
--- /dev/null
+++ b/.npmignore
@@ -0,0 +1,16 @@
+.idea
+.project
+*.sublime-*
+.DS_Store
+*.seed
+*.log
+*.csv
+*.dat
+*.out
+*.pid
+*.swp
+*.swo
+node_modules
+coverage
+*.tgz
+*.xml
diff --git a/.npmrc b/.npmrc
new file mode 100644
index 0000000..4d936e8
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1 @@
+unsafe-perm=true
diff --git a/.travis.yml b/.travis.yml
new file mode 100755
index 0000000..1e33320
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,7 @@
+language: node_js
+node_js:
+ - "stable"
+ - "0.12"
+ - "0.11"
+ - "0.10"
+ - "iojs"
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100755
index 0000000..c0928ae
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,9 @@
+The MIT License (MIT)
+
+Copyright © 2015 Kiko Beats
+
+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 100755
index 0000000..fb95b18
--- /dev/null
+++ b/README.md
@@ -0,0 +1,56 @@
+# Itch
+
+
+
+
+
+
+
+
+![Last version](https://img.shields.io/github/tag/Kikobeats/itch.svg?style=flat-square)
+[![Build Status](http://img.shields.io/travis/Kikobeats/itch/master.svg?style=flat-square)](https://travis-ci.org/Kikobeats/itch)
+[![Coverage Status](http://img.shields.io/coveralls/Kikobeats/itch/master.svg?style=flat-square)](https://coveralls.io/r/Kikobeats/itch?branch=master)
+[![Dependency status](http://img.shields.io/david/Kikobeats/itch.svg?style=flat-square)](https://david-dm.org/Kikobeats/itch)
+[![Dev Dependencies Status](http://img.shields.io/david/dev/Kikobeats/itch.svg?style=flat-square)](https://david-dm.org/Kikobeats/itch#info=devDependencies)
+[![NPM Status](http://img.shields.io/npm/dm/itch.svg?style=flat-square)](https://www.npmjs.org/package/itch)
+[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/Kikobeats)
+
+**NOTE:** more badges availables in [shields.io](http://shields.io/)
+
+> Ghost theme for brands
+
+## Install
+
+```bash
+npm install itch --save
+```
+
+## Usage
+
+```js
+var Itch = require('itch');
+```
+
+## API
+
+### Itch(input, [options])
+
+#### input
+
+*Required*
+Type: `string`
+
+Lorem ipsum.
+
+#### options
+
+##### foo
+
+Type: `boolean`
+Default: `false`
+
+Lorem ipsum.
+
+## License
+
+MIT © [Kiko Beats](http://kikobeats.com)
diff --git a/assets/css/itch.css b/assets/css/itch.css
new file mode 100644
index 0000000..3199db2
--- /dev/null
+++ b/assets/css/itch.css
@@ -0,0 +1,8 @@
+/**
+ * Itch - Ghost theme for brands
+ * @version 0.0.0
+ * @link https://github.com/Kikobeats/Itch
+ * @author Kiko Beats (https://github.com/Kikobeats)
+ * @license MIT
+ */
+@charset "UTF-8";h1,h2{line-height:1.2em}.blog-header,.vertical,.wrap{position:relative}.footnotes,.token.italic{font-style:italic}.blog-content{font-size:1.6rem}@media (max-width:500px){.blog-content{font-size:1.5rem}}h1,h2,h3,h4,h5,h6{margin:3.2em 0 0}h1{font-size:4rem;text-indent:-3px;letter-spacing:-2px}h2{padding-top:0;font-size:3rem;font-weight:700;text-indent:-2px;letter-spacing:-1px;border:none}h3{font-size:2.5rem}h4{font-size:2.2rem}@media (max-width:500px){h1{font-size:2.8rem}h2{font-size:2.3rem}h3,h4{font-size:2rem}}h5{font-size:2rem}h6{font-size:1.8rem}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{text-decoration:underline;color:#242628}.ghost-love:hover,.popular-posts a:hover,.post-meta a,.post-title a{text-decoration:none}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{text-decoration:none;color:#5BA4E5;box-shadow:none}.vertical{top:-2%;display:table-cell;vertical-align:middle}.page-wrapper{padding:50px 60px;overflow:hidden}.blog-header{display:table;width:100%;height:300px;padding:0 60px;margin:-50px -60px 50px;text-align:center;color:#fff;background:center center no-repeat #303538;background-size:cover}@media (max-width:400px){.blog-header{width:100%;height:200px;padding:0 15px;margin:-15px -15px 15px}}@media (max-width:650px){.blog-header{width:114%;height:250px;padding:0 11%;margin:-11% 0 11% -18%}}@media (max-width:850px){.blog-header{width:114%;padding:0 11%;margin:-11% 0 11% -18%}}@media (max-width:1100px){.blog-header{padding:0 40px;margin:-30px -40px 30px}}.blog-header h1{max-width:640px;margin:0 auto;font-size:2.8rem;font-weight:200;letter-spacing:0;color:#fff}@media (max-width:500px){.blog-header h1{font-size:1.8rem}}@media (max-width:650px){.blog-header h1{font-size:2.2rem}}@media (max-width:850px){.blog-header h1{font-size:2.6rem}}.archive-template .blog-header{display:none}.blog-content{float:left;width:63.26531%}.blog-sidebar{float:right;width:30.61224%}.blog-sidebar h1,.blog-sidebar h2,.blog-sidebar h3,.blog-sidebar h4,.blog-sidebar h5,.blog-sidebar h6{margin-top:0}.blog-sidebar p{margin:0 0 15px;font-size:17px;font-weight:200;line-height:1.3em}.widget{padding:25px 30px 30px;margin-bottom:50px}@media (max-width:1100px){.page-wrapper{padding:30px 40px}}@media (max-width:850px){.page-wrapper{padding:8% 11%}.blog-content{margin-right:0}.blog-sidebar{position:static;width:100%;margin-top:30px}}@media (max-width:650px){.page-wrapper{padding:6% 9%}}@media (max-width:400px){.page-wrapper{padding:15px}}.ghost-love{display:block;text-align:center;color:#fff;background:#5BA4E5}.ghost-love h3{font-size:2rem;font-weight:700;line-height:1.1em;color:#fff}.ghost-love .highlight{display:block;margin:3rem 0 .5rem;color:#fff}@media (max-width:1000px){.blog-content,.blog-sidebar{float:none;width:100%}.ghost-love .highlight{display:inline;margin:0}.ghost-love .highlight:after,.ghost-love .highlight:before{display:none}}.ghost-love .highlight:after,.ghost-love .highlight:before{display:inline-block;font-weight:200;content:"—"}.ghost-love-button,.popular-posts h3{font-weight:700;text-transform:uppercase}.ghost-love .highlight:before{margin-right:5px}.ghost-love .highlight:after{margin-left:5px}.ghost-love h4{font-size:1.5rem;line-height:1.4em;color:rgba(255,255,255,.8)}.ghost-love-button{padding:15px 10px;margin:80px -30px -30px;font-size:1.5rem;text-align:center;color:#fff;background:#e25440}@media (max-width:1000px){.ghost-love-button{margin-top:30px}}.ghost-love:hover .ghost-love-button{background:#242628}.popular-posts{padding:0}.popular-posts h3{margin-bottom:2rem;font-size:1.8rem}.popular-posts mark{padding:0 4px;font-weight:400;color:#fff;background:#ffc336}.popular-posts ol{padding:0;margin:0;list-style:none}.popular-posts li{position:relative;display:block;margin:0 0 2px;font-size:1.4rem;line-height:1.4em;background:#f0f6f8}.popular-posts li:hover{background:#e2edf2}.popular-posts li:hover .number{background:#d4e4ec}.popular-posts li:nth-child(3n) .number{border-color:#35393b}.popular-posts li:nth-child(3n+2) .number{border-color:#e25440}.popular-posts a{display:block;min-height:38px;padding:15px 15px 15px 75px;color:rgba(0,0,0,.7)}.popular-posts .number{position:absolute;top:0;bottom:0;left:0;display:block;width:37px;padding:10px;font-size:2.8rem;font-weight:700;line-height:1.5em;text-align:center;color:rgba(0,0,0,.2);border-left:#5BA4E5 3px solid;background:#e2edf2}.blog-subscribe{padding:0;text-align:center}.blog-subscribe h3{font-weight:700;text-transform:uppercase}.blog-subscribe p{margin:1rem 0 2.5rem;font-size:1.6rem;font-weight:200;color:#aaa9a2}#blogsubscribe .modal-header{padding:50px 50px 0;text-align:center;border:none}#blogsubscribe .modal-title{font-size:2.8rem;font-weight:700;line-height:1.1em}@media (max-width:450px){#blogsubscribe .modal-header{padding:35px 20px 0}#blogsubscribe .modal-title{font-size:2.2rem}}#blogsubscribe .modal-body{padding:30px 50px 50px;text-align:center}@media (max-width:450px){#blogsubscribe .modal-body{padding:10px 20px 30px}}#blogsubscribe form{margin:0}#blogsubscribe input{width:100%;height:50px;padding:0 15px;margin-bottom:1rem}#blogsubscribe button{min-height:50px;font-size:1.8rem;line-height:1}@media (max-width:450px){#blogsubscribe button{font-size:1.3rem}}#blogsubscribe p{margin:1rem 0;color:#aaa9a2}.twitter-box{position:relative;padding:0}@media (max-width:1000px){.twitter-box{display:none}}.twitter-box img{width:100%}.twitter-box-profilepic{position:absolute;top:100px;left:50%;display:block;width:100px;height:100px;margin-left:-50px;text-align:center;border-radius:100%;background:#242628}.twitter-box-profilepic img{width:40px;height:auto;margin-top:30px}.twitter-box-dev .twitter-box-profilepic{background:#256097}.twitter-box-dev .twitter-box-profilepic img{width:70px;margin-top:15px}.twitter-box-content{padding:50px 10px 10px;text-align:center;border:1px solid #eee;border-top:none}.twitter-box-content h4{font-size:2rem;font-weight:700}.twitter-box-content p{margin:.8rem 0;font-size:1.4rem;line-height:1.5em;color:#35393b}.twitter-follow-button{margin:1rem 0}.facebook-box{min-height:280px;padding:3px 0 0;text-align:center;border:1px solid #eee;border-top:#5BA4E5 3px solid}.gplus-box{padding:0}@media (max-width:1000px){.facebook-box,.gplus-box{display:none}}.blog-text{color:#7d878a;border:1px solid #edece4;background:#f5f5f0}.pagination,.pagination a,.post-meta,.post-meta a{color:#9eabb3}.blog-text ul{padding:0 0 0 1.2em;margin:0}.post{margin-bottom:40px;border-bottom:#d0e2ea 1px dashed}@media (max-width:500px){.post{margin-bottom:25px}}.post-title{margin:0}.post-excerpt p{margin:2.6rem 0}@media (max-width:500px){.post-excerpt p{margin:2rem 0}.post-meta .author-img{display:none}}.post-meta{margin:5px 0;font-size:1.4rem}.post-meta .author-img{float:left;width:24px;height:24px;margin-right:9px}.author-img{border-radius:100%}.post-meta a:hover{text-decoration:underline}.pagination a:hover,.read-next-story,.read-next-story:hover{text-decoration:none}.more-links{margin:2em 0}.read-more{min-height:0;padding:.3em .5em;font-size:10px;line-height:12px;vertical-align:top}@media (max-width:500px){.more-links{margin:1.6em 0}.more-links .right{display:none}.read-more{padding:1em}}.post-template .post{margin-bottom:0;border-bottom:none}.post-content{margin-bottom:3.2em}.post-content img{display:block;height:auto;max-width:100%;margin:2.2em auto}@media (max-width:500px){.post-content img{margin:1.6em auto}}.post-content .full-img{width:calc(100% + 60px);max-width:none;margin-left:-60px}@media (max-width:400px){.post-content .full-img{width:100%;width:calc(100% + 30px);margin-right:-15px;margin-left:-15px}}@media (max-width:650px){.post-content .full-img{width:122%;margin-right:-11%;margin-left:-11%}}@media (max-width:850px){.post-content .full-img{width:130%;margin-right:-15%;margin-left:-15%}}@media (max-width:1100px){.post-content .full-img{width:calc(100% + 40px);margin-left:-40px}}.share{margin:1.6em 0}.post-template .fb-like,.twitter-share-button{margin-right:30px}@media (max-width:750px){.share{display:none}}.fb-like{line-height:1.2rem}.pocket-btn{display:inline-block;margin-right:-10px;vertical-align:top}[class^=PIN_]{-webkit-transition:none;transition:none}.author{position:relative;padding:30px;margin:1.6em 0;border:2px dashed #e2edf2;background:#f4f8fa}.author .author-img{position:absolute;top:30px;left:30px;width:80px;height:80px;border:5px solid #fff}.author-meta{margin-left:120px}.author-meta h4{margin-top:.25rem}.author-meta p{margin:1rem 0 0;font-size:1.4rem}@media (max-width:550px){.author{padding:20px;text-align:center}.author .author-img{position:static}.author-meta{margin-left:0}.author-meta p{font-size:1.3rem}}.footnotes{font-size:1.3rem}.footnotes li{margin:.6rem 0}.footnotes p{margin:0}.comments{margin-top:3.2em}.pagination{position:relative;margin:40px auto 20px;font-size:1.3rem;text-align:center}.newer-posts,.older-posts{position:absolute;display:inline-block;padding:5px 15px;-webkit-transition:border ease .3s;transition:border ease .3s;text-decoration:none;border:2px solid #ebf2f6;border-radius:30px}.older-posts{right:0}.page-number{display:inline-block;padding:5px 0}@media (max-width:500px){.newer-posts,.older-posts{position:static;margin:10px 0}.page-number{display:block}}.newer-posts{left:0}.newer-posts:hover,.older-posts:hover{border-color:#9eabb3}@media (min-width:768px){.navbar-collapse.closed{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}}.subscribe-banner{width:100%;padding:10px 0;font-size:1.6rem;font-weight:700;text-align:center;color:#fff;background:#e25440}.subscribe-banner .button{color:#fff;background:#242628}.subscribe-banner .button:hover{background:#111}@media (max-width:800px){.subscribe-banner{display:none}}.read-next{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:4rem 0;overflow:hidden;border-radius:5px;-webkit-align-items:stretch;align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch}.read-next-story{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-width:50%;overflow:hidden;text-align:center;color:#fff;background:center center no-repeat #222;background-size:cover;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;-ms-flex-positive:1}.read-next-story:hover:before{-webkit-transition:all .2s ease;transition:all .2s ease;background:rgba(0,0,0,.8)}.read-next-story:hover .post:before{-webkit-transition:all .2s ease;transition:all .2s ease;color:#222;background:#fff}.read-next-story:before{position:absolute;top:0;right:0;bottom:0;left:0;display:block;content:"";-webkit-transition:all .5s ease;transition:all .5s ease;background:rgba(0,0,0,.7)}.read-next-story .post{position:relative;width:80%;padding-top:6rem;padding-bottom:6rem;margin:0 auto}.read-next-story .post:before{padding:4px 10px 5px;font-family:"Open Sans",sans-serif;font-size:1.1rem;content:"Read This Next";-webkit-transition:all .5s ease;transition:all .5s ease;text-transform:uppercase;color:rgba(255,255,255,.8);border:rgba(255,255,255,.5) solid;border-radius:4px}.read-next-story.prev .post:before{content:"You Might Enjoy"}.read-next-story h2{margin-top:1rem;color:#fff}.read-next-story p{margin:5px 0 0;font-weight:200;line-height:1.4em;color:rgba(255,255,255,.8)}.read-next-story.no-cover{background:#fff}.read-next-story.no-cover:before{display:none}.read-next-story.no-cover .post:before{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.2)}.read-next-story.no-cover:hover .post:before{color:#5BA4E5;border-color:#5BA4E5}.read-next-story.no-cover h2{color:rgba(0,0,0,.8)}.read-next-story.no-cover p{color:rgba(0,0,0,.5)}.read-next-story.no-cover+.read-next-story.no-cover{border-left:rgba(0,0,100,.04) 1px solid}code[class*=language-],pre[class*=language-]{font-family:Consolas,Monaco,"Andale Mono",monospace;line-height:1.5;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;hyphens:none;color:#f8f8f2;text-shadow:0 1px rgba(0,0,0,.3);direction:ltr;-ms-hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto;border-radius:.3em}:not(pre)>code[class*=language-],pre[class*=language-]{background:#272822}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#f8f8f2}.namespace{opacity:.7}.token.constant,.token.deleted,.token.property,.token.symbol,.token.tag{color:#f92672}.token.boolean,.token.number{color:#ae81ff}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#a6e22e}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url,.token.variable{color:#f8f8f2}.token.atrule,.token.attr-value,.token.function{color:#e6db74}.token.keyword{color:#66d9ef}.token.important,.token.regex{color:#fd971f}.token.bold,.token.important{font-weight:700}.token.entity{cursor:help}
\ No newline at end of file
diff --git a/assets/images/ghostdev.png b/assets/images/ghostdev.png
new file mode 100644
index 0000000..702b496
Binary files /dev/null and b/assets/images/ghostdev.png differ
diff --git a/assets/images/twitterbg.jpg b/assets/images/twitterbg.jpg
new file mode 100644
index 0000000..9b4af8c
Binary files /dev/null and b/assets/images/twitterbg.jpg differ
diff --git a/assets/images/twitterpic.png b/assets/images/twitterpic.png
new file mode 100644
index 0000000..a07dff6
Binary files /dev/null and b/assets/images/twitterpic.png differ
diff --git a/assets/js/itch.js b/assets/js/itch.js
new file mode 100644
index 0000000..e5c69ff
--- /dev/null
+++ b/assets/js/itch.js
@@ -0,0 +1,8 @@
+/**
+ * Itch - Ghost theme for brands
+ * @version 0.0.0
+ * @link https://github.com/Kikobeats/Itch
+ * @author Kiko Beats (https://github.com/Kikobeats)
+ * @license MIT
+ */
+self="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{};var Prism=function(){var e=/\blang(?:uage)?-(?!\*)(\w+)\b/i,t=self.Prism={util:{encode:function(e){return e instanceof n?new n(e.type,t.util.encode(e.content),e.alias):"Array"===t.util.type(e)?e.map(t.util.encode):e.replace(/&/g,"&").replace(/e.length)break e;if(!(d instanceof a)){u.lastIndex=0;var m=u.exec(d);if(m){c&&(f=m[1].length);var y=m.index-1+f,m=m[0].slice(f),v=m.length,k=y+v,b=d.slice(0,y+1),w=d.slice(k+1),N=[p,1];b&&N.push(b);var O=new a(l,g?t.tokenize(m,g):m,h);N.push(O),w&&N.push(w),Array.prototype.splice.apply(r,N)}}}}}return r},hooks:{all:{},add:function(e,n){var a=t.hooks.all;a[e]=a[e]||[],a[e].push(n)},run:function(e,n){var a=t.hooks.all[e];if(a&&a.length)for(var r,i=0;r=a[i++];)r(n)}}},n=t.Token=function(e,t,n){this.type=e,this.content=t,this.alias=n};if(n.stringify=function(e,a,r){if("string"==typeof e)return e;if("Array"===t.util.type(e))return e.map(function(t){return n.stringify(t,a,e)}).join("");var i={type:e.type,content:n.stringify(e.content,a,r),tag:"span",classes:["token",e.type],attributes:{},language:a,parent:r};if("comment"==i.type&&(i.attributes.spellcheck="true"),e.alias){var l="Array"===t.util.type(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(i.classes,l)}t.hooks.run("wrap",i);var s="";for(var o in i.attributes)s+=o+'="'+(i.attributes[o]||"")+'"';return"<"+i.tag+' class="'+i.classes.join(" ")+'" '+s+">"+i.content+""+i.tag+">"},!self.document)return self.addEventListener?(self.addEventListener("message",function(e){var n=JSON.parse(e.data),a=n.language,r=n.code;self.postMessage(JSON.stringify(t.util.encode(t.tokenize(r,t.languages[a])))),self.close()},!1),self.Prism):self.Prism;var a=document.getElementsByTagName("script");return a=a[a.length-1],a&&(t.filename=a.src,document.addEventListener&&!a.hasAttribute("data-manual")&&document.addEventListener("DOMContentLoaded",t.highlightAll)),self.Prism}();"undefined"!=typeof module&&module.exports&&(module.exports=Prism),Prism.languages.markup={comment://,prolog:/<\?.+?\?>/,doctype://,cdata://i,tag:{pattern:/<\/?[\w:-]+\s*(?:\s+[\w:-]+(?:=(?:("|')(\\?[\w\W])*?\1|[^\s'">=]+))?\s*)*\/?>/i,inside:{tag:{pattern:/^<\/?[\w:-]+/i,inside:{punctuation:/^<\/?/,namespace:/^[\w-]+?:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/i,inside:{punctuation:/=|>|"/}},punctuation:/\/?>/,"attr-name":{pattern:/[\w:-]+/,inside:{namespace:/^[\w-]+?:/}}}},entity:/?[\da-z]{1,8};/i},Prism.hooks.add("wrap",function(t){"entity"===t.type&&(t.attributes.title=t.content.replace(/&/,"&"))}),Prism.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{punctuation:/[;:]/}},url:/url\((?:(["'])(\\\n|\\?.)*?\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*(?=\s*\{)/,string:/("|')(\\\n|\\?.)*?\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,punctuation:/[\{\};:]/,"function":/[-a-z0-9]+(?=\()/i},Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/",head.appendChild(div.childNodes[1])}return options&&$.extend(settings,options),this.each(function(){var selectors=["iframe[src*='player.vimeo.com']","iframe[src*='youtube.com']","iframe[src*='youtube-nocookie.com']","iframe[src*='kickstarter.com'][src*='video.html']","object","embed"];settings.customSelector&&selectors.push(settings.customSelector);var $allVideos=$(this).find(selectors.join(","));$allVideos=$allVideos.not("object object"),$allVideos.each(function(){var $this=$(this);if(!("embed"===this.tagName.toLowerCase()&&$this.parent("object").length||$this.parent(".fluid-width-video-wrapper").length)){var height="object"===this.tagName.toLowerCase()||$this.attr("height")&&!isNaN(parseInt($this.attr("height"),10))?parseInt($this.attr("height"),10):$this.height(),width=isNaN(parseInt($this.attr("width"),10))?$this.width():parseInt($this.attr("width"),10),aspectRatio=height/width;if(!$this.attr("id")){var videoID="fitvid"+Math.floor(999999*Math.random());$this.attr("id",videoID)}$this.wrap('').parent(".fluid-width-video-wrapper").css("padding-top",100*aspectRatio+"%"),$this.removeAttr("height").removeAttr("width")}})})}}(window.jQuery||window.Zepto);
\ No newline at end of file
diff --git a/assets/js/src/main.js b/assets/js/src/main.js
new file mode 100644
index 0000000..990a92a
--- /dev/null
+++ b/assets/js/src/main.js
@@ -0,0 +1,58 @@
+/*globals jQuery, document */
+(function ($) {
+ "use strict";
+
+ $(document).ready(function(){
+ $(".post-content").fitVids();
+ });
+
+ // When all content is loaded, resize dem images
+ $(window).load(function() {
+
+ function casperFullImg() {
+ $("img").each( function() {
+ var contentWidth = $(".post-content").outerWidth(); // Width of the content
+ var imageWidth = $(this)[0].naturalWidth; // Original image resolution
+
+ if (imageWidth >= contentWidth) {
+ $(this).addClass('full-img');
+ } else {
+ $(this).removeClass('full-img');
+ }
+ });
+ };
+
+ casperFullImg();
+ $(window).smartresize(casperFullImg);
+ });
+
+
+}(jQuery));
+
+(function($,sr){
+
+ // debouncing function from John Hann
+ // http://unscriptable.com/index.php/2009/03/20/debouncing-javascript-methods/
+ var debounce = function (func, threshold, execAsap) {
+ var timeout;
+
+ return function debounced () {
+ var obj = this, args = arguments;
+ function delayed () {
+ if (!execAsap)
+ func.apply(obj, args);
+ timeout = null;
+ };
+
+ if (timeout)
+ clearTimeout(timeout);
+ else if (execAsap)
+ func.apply(obj, args);
+
+ timeout = setTimeout(delayed, threshold || 100);
+ };
+ }
+ // smartresize
+ jQuery.fn[sr] = function(fn){ return fn ? this.bind('resize', debounce(fn)) : this.trigger(sr); };
+
+})(jQuery,'smartresize');
\ No newline at end of file
diff --git a/assets/js/src/prism.js b/assets/js/src/prism.js
new file mode 100644
index 0000000..9ea8551
--- /dev/null
+++ b/assets/js/src/prism.js
@@ -0,0 +1,7 @@
+/* http://prismjs.com/download.html?themes=prism-okaidia&languages=markup+css+clike+javascript+markdown */
+self="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{};var Prism=function(){var e=/\blang(?:uage)?-(?!\*)(\w+)\b/i,t=self.Prism={util:{encode:function(e){return e instanceof n?new n(e.type,t.util.encode(e.content),e.alias):"Array"===t.util.type(e)?e.map(t.util.encode):e.replace(/&/g,"&").replace(/e.length)break e;if(!(d instanceof a)){u.lastIndex=0;var m=u.exec(d);if(m){c&&(f=m[1].length);var y=m.index-1+f,m=m[0].slice(f),v=m.length,k=y+v,b=d.slice(0,y+1),w=d.slice(k+1),N=[p,1];b&&N.push(b);var O=new a(l,g?t.tokenize(m,g):m,h);N.push(O),w&&N.push(w),Array.prototype.splice.apply(r,N)}}}}}return r},hooks:{all:{},add:function(e,n){var a=t.hooks.all;a[e]=a[e]||[],a[e].push(n)},run:function(e,n){var a=t.hooks.all[e];if(a&&a.length)for(var r,i=0;r=a[i++];)r(n)}}},n=t.Token=function(e,t,n){this.type=e,this.content=t,this.alias=n};if(n.stringify=function(e,a,r){if("string"==typeof e)return e;if("Array"===t.util.type(e))return e.map(function(t){return n.stringify(t,a,e)}).join("");var i={type:e.type,content:n.stringify(e.content,a,r),tag:"span",classes:["token",e.type],attributes:{},language:a,parent:r};if("comment"==i.type&&(i.attributes.spellcheck="true"),e.alias){var l="Array"===t.util.type(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(i.classes,l)}t.hooks.run("wrap",i);var s="";for(var o in i.attributes)s+=o+'="'+(i.attributes[o]||"")+'"';return"<"+i.tag+' class="'+i.classes.join(" ")+'" '+s+">"+i.content+""+i.tag+">"},!self.document)return self.addEventListener?(self.addEventListener("message",function(e){var n=JSON.parse(e.data),a=n.language,r=n.code;self.postMessage(JSON.stringify(t.util.encode(t.tokenize(r,t.languages[a])))),self.close()},!1),self.Prism):self.Prism;var a=document.getElementsByTagName("script");return a=a[a.length-1],a&&(t.filename=a.src,document.addEventListener&&!a.hasAttribute("data-manual")&&document.addEventListener("DOMContentLoaded",t.highlightAll)),self.Prism}();"undefined"!=typeof module&&module.exports&&(module.exports=Prism);;
+Prism.languages.markup={comment://,prolog:/<\?.+?\?>/,doctype://,cdata://i,tag:{pattern:/<\/?[\w:-]+\s*(?:\s+[\w:-]+(?:=(?:("|')(\\?[\w\W])*?\1|[^\s'">=]+))?\s*)*\/?>/i,inside:{tag:{pattern:/^<\/?[\w:-]+/i,inside:{punctuation:/^<\/?/,namespace:/^[\w-]+?:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/i,inside:{punctuation:/=|>|"/}},punctuation:/\/?>/,"attr-name":{pattern:/[\w:-]+/,inside:{namespace:/^[\w-]+?:/}}}},entity:/?[\da-z]{1,8};/i},Prism.hooks.add("wrap",function(t){"entity"===t.type&&(t.attributes.title=t.content.replace(/&/,"&"))});;
+Prism.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{punctuation:/[;:]/}},url:/url\((?:(["'])(\\\n|\\?.)*?\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*(?=\s*\{)/,string:/("|')(\\\n|\\?.)*?\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,punctuation:/[\{\};:]/,"function":/[-a-z0-9]+(?=\()/i},Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/