Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. Head back home to try finding it again.
+
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..c802e0d
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,6 @@
+source "https://rubygems.org"
+
+gem "jekyll"
+gem "jekyll-gist"
+gem "jekyll-paginate"
+gem "jekyll-seo-tag"
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..ad9265f
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,82 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ addressable (2.7.0)
+ public_suffix (>= 2.0.2, < 5.0)
+ colorator (1.1.0)
+ concurrent-ruby (1.1.6)
+ em-websocket (0.5.1)
+ eventmachine (>= 0.12.9)
+ http_parser.rb (~> 0.6.0)
+ eventmachine (1.2.7)
+ faraday (1.0.1)
+ multipart-post (>= 1.2, < 3)
+ ffi (1.12.2)
+ forwardable-extended (2.6.0)
+ http_parser.rb (0.6.0)
+ i18n (1.8.2)
+ concurrent-ruby (~> 1.0)
+ jekyll (4.0.0)
+ addressable (~> 2.4)
+ colorator (~> 1.0)
+ em-websocket (~> 0.5)
+ i18n (>= 0.9.5, < 2)
+ jekyll-sass-converter (~> 2.0)
+ jekyll-watch (~> 2.0)
+ kramdown (~> 2.1)
+ kramdown-parser-gfm (~> 1.0)
+ liquid (~> 4.0)
+ mercenary (~> 0.3.3)
+ pathutil (~> 0.9)
+ rouge (~> 3.0)
+ safe_yaml (~> 1.0)
+ terminal-table (~> 1.8)
+ jekyll-gist (1.5.0)
+ octokit (~> 4.2)
+ jekyll-paginate (1.1.0)
+ jekyll-sass-converter (2.1.0)
+ sassc (> 2.0.1, < 3.0)
+ jekyll-seo-tag (2.6.1)
+ jekyll (>= 3.3, < 5.0)
+ jekyll-watch (2.2.1)
+ listen (~> 3.0)
+ kramdown (2.1.0)
+ kramdown-parser-gfm (1.1.0)
+ kramdown (~> 2.0)
+ liquid (4.0.3)
+ listen (3.2.1)
+ rb-fsevent (~> 0.10, >= 0.10.3)
+ rb-inotify (~> 0.9, >= 0.9.10)
+ mercenary (0.3.6)
+ multipart-post (2.1.1)
+ octokit (4.18.0)
+ faraday (>= 0.9)
+ sawyer (~> 0.8.0, >= 0.5.3)
+ pathutil (0.16.2)
+ forwardable-extended (~> 2.6)
+ public_suffix (4.0.4)
+ rb-fsevent (0.10.3)
+ rb-inotify (0.10.1)
+ ffi (~> 1.0)
+ rouge (3.17.0)
+ safe_yaml (1.0.5)
+ sassc (2.2.1)
+ ffi (~> 1.9)
+ sawyer (0.8.2)
+ addressable (>= 2.3.5)
+ faraday (> 0.8, < 2.0)
+ terminal-table (1.8.0)
+ unicode-display_width (~> 1.1, >= 1.1.1)
+ unicode-display_width (1.7.0)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ jekyll
+ jekyll-gist
+ jekyll-paginate
+ jekyll-seo-tag
+
+BUNDLED WITH
+ 2.1.4
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..8a0cd84
--- /dev/null
+++ b/README.md
@@ -0,0 +1,92 @@
+# Poole
+
+*The Strange Case of Dr. Jekyll and Mr. Hyde* tells the story of a lawyer investigating the connection of two persons, Dr. Henry Jekyll and Mr. Edward Hyde. Chief among the novel's supporting cast is a man by the name of Mr. Poole, Dr. Jekyll's loyal butler.
+
+-----
+
+Poole is the butler for [Jekyll](http://jekyllrb.com), the static site generator. It's designed and developed by [@mdo](https://twitter.com/mdo) to provide a clear and concise foundational setup for any Jekyll site. It does so by furnishing a full vanilla Jekyll install with example templates, pages, posts, and styles.
+
+
+
+See Poole in action with [the demo site](https://demo.getpoole.com).
+
+There are currently two official themes built on Poole:
+
+* [Hyde](https://hyde.getpoole.com)
+* [Lanyon](https://lanyon.getpoole.com)
+
+Individual theme feedback and bug reports should be submitted to the theme's individual repository.
+
+
+## Contents
+
+- [Usage](#usage)
+- [Development](#development)
+- [Author](#author)
+- [License](#license)
+
+
+## Usage
+
+### 1. Install dependencies
+
+Poole is built on Jekyll and uses its built-in SCSS compiler to generate our CSS. Before getting started, you'll need to install the Jekyll gem and related dependencies:
+
+```bash
+$ gem install jekyll jekyll-gist jekyll-sitemap jekyll-seo-tag
+```
+
+**Windows users:** Windows users have a bit more work to do, but luckily [@juthilo](https://github.com/juthilo) has your back with his [Run Jekyll on Windows](https://github.com/juthilo/run-jekyll-on-windows) guide.
+
+**Need syntax highlighting?** Poole includes support for Pygments or Rouge, so install your gem of choice to make use of the built-in styling. Read more about this [in the Jekyll docs](http://jekyllrb.com/docs/templates/#code_snippet_highlighting).
+
+### 2a. Quick start
+
+To help anyone with any level of familiarity with Jekyll quickly get started, Poole includes everything you need for a basic Jekyll site. To that end, just download Poole and start up Jekyll.
+
+### 2b. Roll your own Jekyll site
+
+Folks wishing to use Jekyll's templates and styles can do so with a little bit of manual labor. Download Poole and then copy what you need (likely `_layouts/`, `*.html` files, `atom.xml` for RSS, and `assets/` for CSS, JS, etc.).
+
+### 3. Running locally
+
+To see your Jekyll site with Poole applied, start a Jekyll server. In Terminal, from `/poole` (or whatever your Jekyll site's root directory is named):
+
+```bash
+$ jekyll serve
+```
+
+Open in your browser, and voilà.
+
+### 4. Serving it up
+
+If you host your code on GitHub, you can use [GitHub Pages](https://pages.github.com) to host your project.
+
+1. Fork this repo and switch to the `gh-pages` branch.
+ 1. If you're [using a custom domain name](https://help.github.com/articles/setting-up-a-custom-domain-with-github-pages), modify the `CNAME` file to point to your new domain.
+ 2. If you're not using a custom domain name, **modify the `baseurl` in `_config.yml`** to point to your GitHub Pages URL. Example: for a repo at `github.com/username/poole`, use `http://username.github.io/poole/`. **Be sure to include the trailing slash.**
+3. Done! Head to your GitHub Pages URL or custom domain.
+
+No matter your production or hosting setup, be sure to verify the `baseurl` option file and `CNAME` settings. Not applying this correctly can mean broken styles on your site.
+
+## Development
+
+Poole has two branches, but only one is used for active development.
+
+- `master` for development. **All pull requests should be to submitted against `master`.**
+- `gh-pages` for our hosted site, which includes our analytics tracking code. **Please avoid using this branch.**
+
+CSS is handled via Jeykll's built-in Sass compiler. Source Sass files are located in `_sass/`, included into `styles.scss`, and compile to `styles.css`.
+
+## Author
+
+**Mark Otto**
+-
+-
+
+
+## License
+
+Open sourced under the [MIT license](LICENSE.md).
+
+<3
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..ed6c774
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,41 @@
+# Setup
+title: Deep Sukhwani
+# tagline: The Jekyll Butler
+url: https://deeps.dev
+paginate: 1
+baseurl: ""
+permalink: pretty
+
+# Gems
+plugins:
+ - jekyll-gist
+ - jekyll-paginate
+ - jekyll-seo-tag
+
+# Optimize Jekyll
+exclude:
+ - .editorconfig
+ - .git
+ - .jekyll-cache
+ - Gemfile
+ - Gemfile.lock
+ - LICENSE.md
+ - README.md
+
+sass:
+ sass_dir: _sass
+ style: :compressed
+
+# Options
+
+# Replace this value and uncomment to enable Google Analytics tracking
+# ga_analytics: UA-000000-0
+
+# Specify the author for blog posts
+author:
+ name: Deep Sukhwani
+ url: https://deeps.dev
+ email: deepsukhwani@gmail.com
+
+# Custom vars
+version: 3.0.0
diff --git a/_includes/head.html b/_includes/head.html
new file mode 100644
index 0000000..4ff2d3e
--- /dev/null
+++ b/_includes/head.html
@@ -0,0 +1,19 @@
+
+
+
+
+
+ {% if page.title == "Home" %}
+ {{ site.title }}{% if site.tagline %} · {{ site.tagline }}{% endif %}
+ {% else %}
+ {{ page.title }} · {{ site.title }}
+ {% endif %}
+
+
+
+
+
+
+
+ {% seo title=false %}
+
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..7d4af13
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,38 @@
+
+
+
+ {% include head.html %}
+
+
+
+
+ Hey there! This page is included as an example. Feel free to customize it for your own use upon downloading. Carry on!
+
+
+In the novel, *The Strange Case of Dr. Jekyll and Mr. Hyde*, Mr. Poole is Dr. Jekyll's virtuous and loyal butler. Similarly, Poole is an upstanding and effective butler that helps you build Jekyll themes. It's made by [@mdo](https://twitter.com/mdo).
+
+There are currently two themes built on Poole:
+
+- [Hyde](https://hyde.getpoole.com)
+- [Lanyon](https://lanyon.getpoole.com)
+
+Learn more and contribute on [GitHub](https://github.com/poole).
+
+## Setup
+
+Some fun facts about the setup of this project include:
+
+- Built for [Jekyll](https://jekyllrb.com)
+- Developed on GitHub and hosted for free on [GitHub Pages](https://pages.github.com)
+- Coded with [Atom](https://atom.io), an amazing open source code editor
+
+Have questions or suggestions? Feel free to [open an issue on GitHub](https://github.com/poole/poole/issues/new) or [ask me on Twitter](https://twitter.com/mdo).
+
+Thanks for reading!
diff --git a/archive.md b/archive.md
new file mode 100644
index 0000000..f5df744
--- /dev/null
+++ b/archive.md
@@ -0,0 +1,18 @@
+---
+layout: default
+title: Archive
+---
+
+# Archive
+
+Browse all posts by month and year.
+
+{% assign postsByYearMonth = site.posts | group_by_exp: "post", "post.date | date: '%B %Y'" %}
+{% for yearMonth in postsByYearMonth %}
+
diff --git a/backup/Gemfile b/backup/Gemfile
deleted file mode 100644
index 42b6af7..0000000
--- a/backup/Gemfile
+++ /dev/null
@@ -1,29 +0,0 @@
-source "https://rubygems.org"
-
-# Hello! This is where you manage which Jekyll version is used to run.
-# When you want to use a different version, change it below, save the
-# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
-#
-# bundle exec jekyll serve
-#
-# This will help ensure the proper Jekyll version is running.
-# Happy Jekylling!
-# gem "jekyll", "~> 3.8.5"
-
-# This is the default theme for new Jekyll sites. You may change this to anything you like.
-gem "minima", "~> 2.0"
-
-# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
-# uncomment the line below. To upgrade, run `bundle update github-pages`.
-gem "github-pages", group: :jekyll_plugins
-
-# If you have any plugins, put them here!
-group :jekyll_plugins do
- gem "jekyll-feed", "~> 0.6"
-end
-
-# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
-gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
-
-# Performance-booster for watching directories on Windows
-gem "wdm", "~> 0.1.0" if Gem.win_platform?
diff --git a/backup/_config.yml b/backup/_config.yml
deleted file mode 100644
index f91333e..0000000
--- a/backup/_config.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-# Welcome to Jekyll!
-#
-# This config file is meant for settings that affect your whole blog, values
-# which you are expected to set up once and rarely edit after that. If you find
-# yourself editing this file very often, consider using Jekyll's data files
-# feature for the data you need to update frequently.
-#
-# For technical reasons, this file is *NOT* reloaded automatically when you use
-# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
-
-# Site settings
-# These are used to personalize your new site. If you look in the HTML files,
-# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
-# You can create any custom variable you would like, and they will be accessible
-# in the templates via {{ site.myvariable }}.
-title: Your awesome title
-email: your-email@example.com
-description: >- # this means to ignore newlines until "baseurl:"
- Write an awesome description for your new site here. You can edit this
- line in _config.yml. It will appear in your document head meta (for
- Google search results) and in your feed.xml site description.
-baseurl: "" # the subpath of your site, e.g. /blog
-url: "" # the base hostname & protocol for your site, e.g. http://example.com
-twitter_username: jekyllrb
-github_username: jekyll
-
-# Build settings
-markdown: kramdown
-theme: minima
-plugins:
- - jekyll-feed
-
-# Exclude from processing.
-# The following items will not be processed, by default. Create a custom list
-# to override the default setting.
-# exclude:
-# - Gemfile
-# - Gemfile.lock
-# - node_modules
-# - vendor/bundle/
-# - vendor/cache/
-# - vendor/gems/
-# - vendor/ruby/
diff --git a/backup/_posts/2020-04-07-welcome-to-jekyll.markdown b/backup/_posts/2020-04-07-welcome-to-jekyll.markdown
deleted file mode 100644
index 7fddb08..0000000
--- a/backup/_posts/2020-04-07-welcome-to-jekyll.markdown
+++ /dev/null
@@ -1,25 +0,0 @@
----
-layout: post
-title: "Welcome to Jekyll!"
-date: 2020-04-07 21:11:26 +0530
-categories: jekyll update
----
-You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
-
-To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
-
-Jekyll also offers powerful support for code snippets:
-
-{% highlight ruby %}
-def print_hi(name)
- puts "Hi, #{name}"
-end
-print_hi('Tom')
-#=> prints 'Hi, Tom' to STDOUT.
-{% endhighlight %}
-
-Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
-
-[jekyll-docs]: https://jekyllrb.com/docs/home
-[jekyll-gh]: https://github.com/jekyll/jekyll
-[jekyll-talk]: https://talk.jekyllrb.com/
diff --git a/backup/about.md b/backup/about.md
deleted file mode 100644
index 8b4e0b2..0000000
--- a/backup/about.md
+++ /dev/null
@@ -1,18 +0,0 @@
----
-layout: page
-title: About
-permalink: /about/
----
-
-This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
-
-You can find the source code for Minima at GitHub:
-[jekyll][jekyll-organization] /
-[minima](https://github.com/jekyll/minima)
-
-You can find the source code for Jekyll at GitHub:
-[jekyll][jekyll-organization] /
-[jekyll](https://github.com/jekyll/jekyll)
-
-
-[jekyll-organization]: https://github.com/jekyll
diff --git a/backup/index.md b/backup/index.md
deleted file mode 100644
index 0671507..0000000
--- a/backup/index.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-# Feel free to add content and custom Front Matter to this file.
-# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
-
-layout: home
----
diff --git a/copy-from-poole.sh b/copy-from-poole.sh
new file mode 100755
index 0000000..f91fc3c
--- /dev/null
+++ b/copy-from-poole.sh
@@ -0,0 +1,37 @@
+#!/bin/bash
+
+# What we need to achieve:
+## Copy files from ./poole/ submodule into the directories below as called out in variable 'DIRECTORIES_TO_ITERATE_OVER'
+
+# If you want to iterate over more directories, add them to this variable in space separated manner
+OBJECTS_TO_SYNC="_layouts _includes _sass assets _config.yml 404.html Gemfile about.md archive.md atom.xml index.html
+ README.md styles.scss"
+
+for object in ${OBJECTS_TO_SYNC}
+do
+# echo "Listing contents of ./poole/${item}"
+# ls ./poole/${item}
+ echo "Syncing ./poole/${object} to ${object}"
+ rsync --archive --verbose --compress --update ./poole/${object} ./
+
+
+ # iterate over all the files in ./poole/${item} and if its a file, create a symlink for it in ${directory} (the
+ # folder in parent directory)
+# FILES_IN_DIR=./poole/${directory}/*
+
+# for file in ${FILES_IN_DIR}
+# do
+# # If the object that we are iterating over is a file
+# if [[ -f ${file} ]]; then
+# # Create symlink for that object (file)
+#
+# # cp -nvU - description: https://unix.stackexchange.com/a/294969/314497
+# # Using rsync instead of cp because cp command on Mac is not updated to include -u option
+# rsync --archive --verbose --compress --update --dry-run ${file} ./${directory}/
+# echo "A copy of File: ${file} created in ./${directory}/"
+# echo "Browsing contents of ./${directory}"
+# ls -al ./${directory}
+# fi
+# done
+
+done
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..8517659
--- /dev/null
+++ b/index.html
@@ -0,0 +1,33 @@
+---
+layout: default
+title: Home
+---
+
+