├── .github └── FUNDING.yml ├── .gitignore ├── 404.html ├── Gemfile ├── LICENSE.txt ├── README.md ├── _config.yml ├── _includes ├── article-content.html ├── contact-link.html ├── disqus-comments.html ├── footer.html ├── google-analytics.html ├── head.html ├── header.html ├── hero.html ├── javascripts.html ├── main.scss ├── pagination.html └── search.html ├── _layouts ├── default.html ├── page.html ├── post.html └── tag_page.html ├── _pages ├── about.md └── styleguide.md ├── _posts ├── 2018-05-29-welcome-to-jekyll.md ├── 2018-10-31-the-way-i-see-it-every-life-is-a-pile-of-good-things.md ├── 2018-11-05-in-my-experience-there-is-no-such-thing-as-luck.md ├── 2018-11-06-she-must-have-hidden-the-plans-in-the-escape-pod.md ├── 2018-11-07-now-she-is-my-only-link-to-finding-their-secret-base.md ├── 2018-11-08-escape-is-not-his-plan-i-must-face-him-alone.md ├── 2018-11-09-the-force-is-strong with this-one.i-have-you-now.md ├── 2018-11-10-partially-but-it-also obeys-your-commands.md ├── 2018-11-11-the-last-time-i-felt-it-was-in-the-presence-of-my-old-master.md ├── 2018-11-12-all-ive-got-to-do-is pass as-an-ordinary-human.md └── 2018-11-13-you-werent-on-any-mercy-mission-this-time.md ├── _sass ├── 0-settings │ ├── _helpers.scss │ ├── _mixins.scss │ └── _variables.scss ├── 1-tools │ ├── _animate.scss │ ├── _grid.scss │ ├── _normalize.scss │ ├── _reset.scss │ ├── _shared.scss │ ├── _syntax-highlighting.scss │ └── _zoom.scss ├── 2-base │ └── _base.scss ├── 3-modules │ ├── _footer.scss │ ├── _header.scss │ ├── _hero.scss │ ├── _pagination.scss │ ├── _scroll-button-top.scss │ ├── _search.scss │ └── _wrapper-page.scss └── 4-layouts │ ├── _home-page.scss │ ├── _page.scss │ ├── _post-page.scss │ └── _tag-page.scss ├── favicon.ico ├── images ├── 01.jpg ├── 02.jpg ├── 03.jpg ├── 04.jpg ├── 05.jpg ├── 06.jpg ├── 07.jpg ├── 08.jpg ├── 09.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── 14.jpg ├── logo.svg └── reked-preview.jpg ├── index.html ├── js ├── common.js └── vendors │ ├── instafeed.min.js │ ├── jquery-3.3.1.min.js │ ├── jquery.fitvids.js │ ├── simple-jekyll-search.min.js │ ├── transition.js │ ├── wow.min.js │ └── zoom.min.js ├── search.json └── stackbit.yaml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | *.DS_Store -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/404.html -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/article-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/article-content.html -------------------------------------------------------------------------------- /_includes/contact-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/contact-link.html -------------------------------------------------------------------------------- /_includes/disqus-comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/disqus-comments.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/google-analytics.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/hero.html -------------------------------------------------------------------------------- /_includes/javascripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/javascripts.html -------------------------------------------------------------------------------- /_includes/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/main.scss -------------------------------------------------------------------------------- /_includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/pagination.html -------------------------------------------------------------------------------- /_includes/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_includes/search.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_layouts/tag_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_layouts/tag_page.html -------------------------------------------------------------------------------- /_pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_pages/about.md -------------------------------------------------------------------------------- /_pages/styleguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_pages/styleguide.md -------------------------------------------------------------------------------- /_posts/2018-05-29-welcome-to-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-05-29-welcome-to-jekyll.md -------------------------------------------------------------------------------- /_posts/2018-10-31-the-way-i-see-it-every-life-is-a-pile-of-good-things.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-10-31-the-way-i-see-it-every-life-is-a-pile-of-good-things.md -------------------------------------------------------------------------------- /_posts/2018-11-05-in-my-experience-there-is-no-such-thing-as-luck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-11-05-in-my-experience-there-is-no-such-thing-as-luck.md -------------------------------------------------------------------------------- /_posts/2018-11-06-she-must-have-hidden-the-plans-in-the-escape-pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-11-06-she-must-have-hidden-the-plans-in-the-escape-pod.md -------------------------------------------------------------------------------- /_posts/2018-11-07-now-she-is-my-only-link-to-finding-their-secret-base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-11-07-now-she-is-my-only-link-to-finding-their-secret-base.md -------------------------------------------------------------------------------- /_posts/2018-11-08-escape-is-not-his-plan-i-must-face-him-alone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-11-08-escape-is-not-his-plan-i-must-face-him-alone.md -------------------------------------------------------------------------------- /_posts/2018-11-09-the-force-is-strong with this-one.i-have-you-now.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-11-09-the-force-is-strong with this-one.i-have-you-now.md -------------------------------------------------------------------------------- /_posts/2018-11-10-partially-but-it-also obeys-your-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-11-10-partially-but-it-also obeys-your-commands.md -------------------------------------------------------------------------------- /_posts/2018-11-11-the-last-time-i-felt-it-was-in-the-presence-of-my-old-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-11-11-the-last-time-i-felt-it-was-in-the-presence-of-my-old-master.md -------------------------------------------------------------------------------- /_posts/2018-11-12-all-ive-got-to-do-is pass as-an-ordinary-human.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-11-12-all-ive-got-to-do-is pass as-an-ordinary-human.md -------------------------------------------------------------------------------- /_posts/2018-11-13-you-werent-on-any-mercy-mission-this-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_posts/2018-11-13-you-werent-on-any-mercy-mission-this-time.md -------------------------------------------------------------------------------- /_sass/0-settings/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/0-settings/_helpers.scss -------------------------------------------------------------------------------- /_sass/0-settings/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/0-settings/_mixins.scss -------------------------------------------------------------------------------- /_sass/0-settings/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/0-settings/_variables.scss -------------------------------------------------------------------------------- /_sass/1-tools/_animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/1-tools/_animate.scss -------------------------------------------------------------------------------- /_sass/1-tools/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/1-tools/_grid.scss -------------------------------------------------------------------------------- /_sass/1-tools/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/1-tools/_normalize.scss -------------------------------------------------------------------------------- /_sass/1-tools/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/1-tools/_reset.scss -------------------------------------------------------------------------------- /_sass/1-tools/_shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/1-tools/_shared.scss -------------------------------------------------------------------------------- /_sass/1-tools/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/1-tools/_syntax-highlighting.scss -------------------------------------------------------------------------------- /_sass/1-tools/_zoom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/1-tools/_zoom.scss -------------------------------------------------------------------------------- /_sass/2-base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/2-base/_base.scss -------------------------------------------------------------------------------- /_sass/3-modules/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/3-modules/_footer.scss -------------------------------------------------------------------------------- /_sass/3-modules/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/3-modules/_header.scss -------------------------------------------------------------------------------- /_sass/3-modules/_hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/3-modules/_hero.scss -------------------------------------------------------------------------------- /_sass/3-modules/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/3-modules/_pagination.scss -------------------------------------------------------------------------------- /_sass/3-modules/_scroll-button-top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/3-modules/_scroll-button-top.scss -------------------------------------------------------------------------------- /_sass/3-modules/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/3-modules/_search.scss -------------------------------------------------------------------------------- /_sass/3-modules/_wrapper-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/3-modules/_wrapper-page.scss -------------------------------------------------------------------------------- /_sass/4-layouts/_home-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/4-layouts/_home-page.scss -------------------------------------------------------------------------------- /_sass/4-layouts/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/4-layouts/_page.scss -------------------------------------------------------------------------------- /_sass/4-layouts/_post-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/4-layouts/_post-page.scss -------------------------------------------------------------------------------- /_sass/4-layouts/_tag-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/_sass/4-layouts/_tag-page.scss -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/favicon.ico -------------------------------------------------------------------------------- /images/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/01.jpg -------------------------------------------------------------------------------- /images/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/02.jpg -------------------------------------------------------------------------------- /images/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/03.jpg -------------------------------------------------------------------------------- /images/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/04.jpg -------------------------------------------------------------------------------- /images/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/05.jpg -------------------------------------------------------------------------------- /images/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/06.jpg -------------------------------------------------------------------------------- /images/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/07.jpg -------------------------------------------------------------------------------- /images/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/08.jpg -------------------------------------------------------------------------------- /images/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/09.jpg -------------------------------------------------------------------------------- /images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/10.jpg -------------------------------------------------------------------------------- /images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/11.jpg -------------------------------------------------------------------------------- /images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/12.jpg -------------------------------------------------------------------------------- /images/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/13.jpg -------------------------------------------------------------------------------- /images/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/14.jpg -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/reked-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/images/reked-preview.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/index.html -------------------------------------------------------------------------------- /js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/js/common.js -------------------------------------------------------------------------------- /js/vendors/instafeed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/js/vendors/instafeed.min.js -------------------------------------------------------------------------------- /js/vendors/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/js/vendors/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /js/vendors/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/js/vendors/jquery.fitvids.js -------------------------------------------------------------------------------- /js/vendors/simple-jekyll-search.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/js/vendors/simple-jekyll-search.min.js -------------------------------------------------------------------------------- /js/vendors/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/js/vendors/transition.js -------------------------------------------------------------------------------- /js/vendors/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/js/vendors/wow.min.js -------------------------------------------------------------------------------- /js/vendors/zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/js/vendors/zoom.min.js -------------------------------------------------------------------------------- /search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/search.json -------------------------------------------------------------------------------- /stackbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsheludko/reked/HEAD/stackbit.yaml --------------------------------------------------------------------------------