├── .github ├── FUNDING.yml └── workflows │ └── jekyll.yml ├── .gitignore ├── 404.md ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _data └── projects.yml ├── _includes ├── about.html ├── blog-card.html ├── blogpage-heading.html ├── contact.html ├── dropdown.html ├── footer.html ├── head.html ├── meta.html ├── navbar.html ├── project-card.html ├── search.html └── showcase.html ├── _layouts ├── 404.html ├── blog.html ├── compress.html ├── default.html ├── page.html ├── post.html └── project.html ├── _posts ├── 2020-04-21-what-is-jekyll-how-to-use-it.md ├── 2020-04-22-how-to-install-whatatheme.md └── 2020-04-24-sample-post.md ├── _sass └── main.scss ├── assets ├── css │ └── style.scss ├── images │ ├── 1280x720 Placeholder.png │ ├── How to install and use WhatATheme.png │ ├── SamplePost.png │ ├── What is Jekyll and How to use it.png │ ├── logo.png │ └── meta.jpg └── js │ └── simple-jekyll-search.js ├── blog.md ├── index.md ├── project.md ├── search.json └── test-page.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/.github/workflows/jekyll.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/.gitignore -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/404.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_data/projects.yml -------------------------------------------------------------------------------- /_includes/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/about.html -------------------------------------------------------------------------------- /_includes/blog-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/blog-card.html -------------------------------------------------------------------------------- /_includes/blogpage-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/blogpage-heading.html -------------------------------------------------------------------------------- /_includes/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/contact.html -------------------------------------------------------------------------------- /_includes/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/dropdown.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/meta.html -------------------------------------------------------------------------------- /_includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/navbar.html -------------------------------------------------------------------------------- /_includes/project-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/project-card.html -------------------------------------------------------------------------------- /_includes/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/search.html -------------------------------------------------------------------------------- /_includes/showcase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_includes/showcase.html -------------------------------------------------------------------------------- /_layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_layouts/404.html -------------------------------------------------------------------------------- /_layouts/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_layouts/blog.html -------------------------------------------------------------------------------- /_layouts/compress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_layouts/compress.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_layouts/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_layouts/project.html -------------------------------------------------------------------------------- /_posts/2020-04-21-what-is-jekyll-how-to-use-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_posts/2020-04-21-what-is-jekyll-how-to-use-it.md -------------------------------------------------------------------------------- /_posts/2020-04-22-how-to-install-whatatheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_posts/2020-04-22-how-to-install-whatatheme.md -------------------------------------------------------------------------------- /_posts/2020-04-24-sample-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_posts/2020-04-24-sample-post.md -------------------------------------------------------------------------------- /_sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/_sass/main.scss -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /assets/images/1280x720 Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/assets/images/1280x720 Placeholder.png -------------------------------------------------------------------------------- /assets/images/How to install and use WhatATheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/assets/images/How to install and use WhatATheme.png -------------------------------------------------------------------------------- /assets/images/SamplePost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/assets/images/SamplePost.png -------------------------------------------------------------------------------- /assets/images/What is Jekyll and How to use it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/assets/images/What is Jekyll and How to use it.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/meta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/assets/images/meta.jpg -------------------------------------------------------------------------------- /assets/js/simple-jekyll-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/assets/js/simple-jekyll-search.js -------------------------------------------------------------------------------- /blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/blog.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- -------------------------------------------------------------------------------- /project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/project.md -------------------------------------------------------------------------------- /search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/search.json -------------------------------------------------------------------------------- /test-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevslot/WhatATheme/HEAD/test-page.md --------------------------------------------------------------------------------