├── .gitattributes ├── .github ├── FUNDING.yml ├── issue_template.md ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── 404.html ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _data └── ui-text.yml ├── _includes ├── comments.html ├── disqus.html ├── ext-css.html ├── ext-js.html ├── fb-comment.html ├── footer-minimal.html ├── footer-scripts.html ├── footer.html ├── google_analytics.html ├── gtag.html ├── gtm_body.html ├── gtm_head.html ├── head.html ├── header.html ├── matomo.html ├── nav.html ├── readtime.html ├── social-networks-links.html ├── social-share.html ├── staticman-comment.html ├── staticman-comments.html └── utterances-comment.html ├── _layouts ├── base.html ├── default.html ├── home.html ├── minimal.html ├── page.html └── post.html ├── _posts ├── 2020-02-26-flake-it-till-you-make-it.md └── 2020-02-28-test-markdown.md ├── aboutme.md ├── assets ├── css │ ├── beautifuljekyll-minimal.css │ ├── beautifuljekyll.css │ ├── bootstrap-social.css │ ├── pygment_highlights.css │ └── staticman.css ├── img │ ├── 404-southpark.jpg │ ├── avatar-icon.png │ ├── bgimage.png │ ├── hello_world.jpeg │ ├── install-steps.gif │ ├── path.jpg │ └── thumb.png └── js │ ├── beautifuljekyll.js │ └── staticman.js ├── beautiful-jekyll-theme.gemspec ├── docs └── index.html ├── feed.xml ├── index.html ├── screenshot.png ├── staticman.yml └── tags.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/404.html -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/ui-text.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_data/ui-text.yml -------------------------------------------------------------------------------- /_includes/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/comments.html -------------------------------------------------------------------------------- /_includes/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/disqus.html -------------------------------------------------------------------------------- /_includes/ext-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/ext-css.html -------------------------------------------------------------------------------- /_includes/ext-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/ext-js.html -------------------------------------------------------------------------------- /_includes/fb-comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/fb-comment.html -------------------------------------------------------------------------------- /_includes/footer-minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/footer-minimal.html -------------------------------------------------------------------------------- /_includes/footer-scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/footer-scripts.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/google_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/google_analytics.html -------------------------------------------------------------------------------- /_includes/gtag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/gtag.html -------------------------------------------------------------------------------- /_includes/gtm_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/gtm_body.html -------------------------------------------------------------------------------- /_includes/gtm_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/gtm_head.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/matomo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/matomo.html -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/nav.html -------------------------------------------------------------------------------- /_includes/readtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/readtime.html -------------------------------------------------------------------------------- /_includes/social-networks-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/social-networks-links.html -------------------------------------------------------------------------------- /_includes/social-share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/social-share.html -------------------------------------------------------------------------------- /_includes/staticman-comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/staticman-comment.html -------------------------------------------------------------------------------- /_includes/staticman-comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/staticman-comments.html -------------------------------------------------------------------------------- /_includes/utterances-comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_includes/utterances-comment.html -------------------------------------------------------------------------------- /_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_layouts/base.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_layouts/home.html -------------------------------------------------------------------------------- /_layouts/minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_layouts/minimal.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/2020-02-26-flake-it-till-you-make-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_posts/2020-02-26-flake-it-till-you-make-it.md -------------------------------------------------------------------------------- /_posts/2020-02-28-test-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/_posts/2020-02-28-test-markdown.md -------------------------------------------------------------------------------- /aboutme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/aboutme.md -------------------------------------------------------------------------------- /assets/css/beautifuljekyll-minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/css/beautifuljekyll-minimal.css -------------------------------------------------------------------------------- /assets/css/beautifuljekyll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/css/beautifuljekyll.css -------------------------------------------------------------------------------- /assets/css/bootstrap-social.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/css/bootstrap-social.css -------------------------------------------------------------------------------- /assets/css/pygment_highlights.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/css/pygment_highlights.css -------------------------------------------------------------------------------- /assets/css/staticman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/css/staticman.css -------------------------------------------------------------------------------- /assets/img/404-southpark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/img/404-southpark.jpg -------------------------------------------------------------------------------- /assets/img/avatar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/img/avatar-icon.png -------------------------------------------------------------------------------- /assets/img/bgimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/img/bgimage.png -------------------------------------------------------------------------------- /assets/img/hello_world.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/img/hello_world.jpeg -------------------------------------------------------------------------------- /assets/img/install-steps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/img/install-steps.gif -------------------------------------------------------------------------------- /assets/img/path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/img/path.jpg -------------------------------------------------------------------------------- /assets/img/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/img/thumb.png -------------------------------------------------------------------------------- /assets/js/beautifuljekyll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/js/beautifuljekyll.js -------------------------------------------------------------------------------- /assets/js/staticman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/assets/js/staticman.js -------------------------------------------------------------------------------- /beautiful-jekyll-theme.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/beautiful-jekyll-theme.gemspec -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/docs/index.html -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/feed.xml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/index.html -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/screenshot.png -------------------------------------------------------------------------------- /staticman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/staticman.yml -------------------------------------------------------------------------------- /tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hax4us/beautiful-jekyll/HEAD/tags.html --------------------------------------------------------------------------------