├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── head.html └── header.html ├── _layouts ├── default.html ├── page.html └── post.html ├── _posts ├── 2013-09-07-welcome-to-jekyll.markdown ├── 2014-12-08-this-is-new.markdown ├── 2014-12-11-its-a-new-game.markdown ├── 2014-12-12-playing-with-UI.markdown └── 2015-01-02-my-new-year.markdown ├── _sass ├── _base.scss ├── _layout.scss └── _syntax-highlighting.scss ├── _site ├── LICENSE ├── README.md ├── about │ └── index.html ├── assets │ ├── images │ │ ├── FlakCannon_Large.png │ │ ├── Queen_Full.jpg │ │ ├── about_image.png │ │ └── avatar.png │ └── js │ │ └── main.js ├── css │ └── main.css ├── feed.xml ├── fonts │ ├── FaktPro-Blond.eot │ ├── FaktPro-Blond.woff │ ├── FaktPro-SemiBold.eot │ ├── FaktPro-SemiBold.woff │ ├── FaktPro-Thin.eot │ ├── FaktPro-Thin.woff │ ├── icons.eot │ ├── icons.svg │ ├── icons.ttf │ └── icons.woff ├── index.html ├── its-a-new-game │ └── index.html ├── my-new-year │ └── index.html ├── playing-with-UI │ └── index.html ├── this-is-new │ └── index.html └── welcome-to-jekyll │ └── index.html ├── about.md ├── assets ├── images │ ├── FlakCannon_Large.png │ ├── Queen_Full.jpg │ ├── about_image.png │ └── avatar.png └── js │ └── main.js ├── css └── main.scss ├── feed.xml ├── fonts ├── FaktPro-Blond.eot ├── FaktPro-Blond.woff ├── FaktPro-SemiBold.eot ├── FaktPro-SemiBold.woff ├── FaktPro-Thin.eot ├── FaktPro-Thin.woff ├── icons.eot ├── icons.svg ├── icons.ttf └── icons.woff └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/2013-09-07-welcome-to-jekyll.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_posts/2013-09-07-welcome-to-jekyll.markdown -------------------------------------------------------------------------------- /_posts/2014-12-08-this-is-new.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_posts/2014-12-08-this-is-new.markdown -------------------------------------------------------------------------------- /_posts/2014-12-11-its-a-new-game.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_posts/2014-12-11-its-a-new-game.markdown -------------------------------------------------------------------------------- /_posts/2014-12-12-playing-with-UI.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_posts/2014-12-12-playing-with-UI.markdown -------------------------------------------------------------------------------- /_posts/2015-01-02-my-new-year.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_posts/2015-01-02-my-new-year.markdown -------------------------------------------------------------------------------- /_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_sass/_base.scss -------------------------------------------------------------------------------- /_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_sass/_layout.scss -------------------------------------------------------------------------------- /_sass/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_sass/_syntax-highlighting.scss -------------------------------------------------------------------------------- /_site/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/LICENSE -------------------------------------------------------------------------------- /_site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/README.md -------------------------------------------------------------------------------- /_site/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/about/index.html -------------------------------------------------------------------------------- /_site/assets/images/FlakCannon_Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/assets/images/FlakCannon_Large.png -------------------------------------------------------------------------------- /_site/assets/images/Queen_Full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/assets/images/Queen_Full.jpg -------------------------------------------------------------------------------- /_site/assets/images/about_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/assets/images/about_image.png -------------------------------------------------------------------------------- /_site/assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/assets/images/avatar.png -------------------------------------------------------------------------------- /_site/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/assets/js/main.js -------------------------------------------------------------------------------- /_site/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/css/main.css -------------------------------------------------------------------------------- /_site/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/feed.xml -------------------------------------------------------------------------------- /_site/fonts/FaktPro-Blond.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/fonts/FaktPro-Blond.eot -------------------------------------------------------------------------------- /_site/fonts/FaktPro-Blond.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/fonts/FaktPro-Blond.woff -------------------------------------------------------------------------------- /_site/fonts/FaktPro-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/fonts/FaktPro-SemiBold.eot -------------------------------------------------------------------------------- /_site/fonts/FaktPro-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/fonts/FaktPro-SemiBold.woff -------------------------------------------------------------------------------- /_site/fonts/FaktPro-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/fonts/FaktPro-Thin.eot -------------------------------------------------------------------------------- /_site/fonts/FaktPro-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/fonts/FaktPro-Thin.woff -------------------------------------------------------------------------------- /_site/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/fonts/icons.eot -------------------------------------------------------------------------------- /_site/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/fonts/icons.svg -------------------------------------------------------------------------------- /_site/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/fonts/icons.ttf -------------------------------------------------------------------------------- /_site/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/fonts/icons.woff -------------------------------------------------------------------------------- /_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/index.html -------------------------------------------------------------------------------- /_site/its-a-new-game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/its-a-new-game/index.html -------------------------------------------------------------------------------- /_site/my-new-year/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/my-new-year/index.html -------------------------------------------------------------------------------- /_site/playing-with-UI/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/playing-with-UI/index.html -------------------------------------------------------------------------------- /_site/this-is-new/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/this-is-new/index.html -------------------------------------------------------------------------------- /_site/welcome-to-jekyll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/_site/welcome-to-jekyll/index.html -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/about.md -------------------------------------------------------------------------------- /assets/images/FlakCannon_Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/assets/images/FlakCannon_Large.png -------------------------------------------------------------------------------- /assets/images/Queen_Full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/assets/images/Queen_Full.jpg -------------------------------------------------------------------------------- /assets/images/about_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/assets/images/about_image.png -------------------------------------------------------------------------------- /assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/assets/images/avatar.png -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/css/main.scss -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/feed.xml -------------------------------------------------------------------------------- /fonts/FaktPro-Blond.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/fonts/FaktPro-Blond.eot -------------------------------------------------------------------------------- /fonts/FaktPro-Blond.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/fonts/FaktPro-Blond.woff -------------------------------------------------------------------------------- /fonts/FaktPro-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/fonts/FaktPro-SemiBold.eot -------------------------------------------------------------------------------- /fonts/FaktPro-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/fonts/FaktPro-SemiBold.woff -------------------------------------------------------------------------------- /fonts/FaktPro-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/fonts/FaktPro-Thin.eot -------------------------------------------------------------------------------- /fonts/FaktPro-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/fonts/FaktPro-Thin.woff -------------------------------------------------------------------------------- /fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/fonts/icons.eot -------------------------------------------------------------------------------- /fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/fonts/icons.svg -------------------------------------------------------------------------------- /fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/fonts/icons.ttf -------------------------------------------------------------------------------- /fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/fonts/icons.woff -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffabs/estivo/HEAD/index.html --------------------------------------------------------------------------------