From 4a9a09d69c6c53914040370371c647fce86635f2 Mon Sep 17 00:00:00 2001
From: Jacob Walchuk
Date: Fri, 04 Nov 2022 21:52:15 +0000
Subject: [PATCH] Initial commit
---
LICENSE.txt | 21 +++++++++++++++++++++
README.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
feed.xml | 17 +++++++++++++++++
index.html | 38 ++++++++++++++++++++++++++++++++++++++
yaqubroli-theme.gemspec | 16 ++++++++++++++++
assets/quasicarousel.png | 0
assets/css/styles.css | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
assets/css/styles.css.map | 16 ++++++++++++++++
assets/fonts/AppleGaramond-Bold.ttf | 0
assets/fonts/AppleGaramond-BoldItalic.ttf | 0
assets/fonts/AppleGaramond-Italic.ttf | 0
assets/fonts/AppleGaramond-Light.ttf | 0
assets/fonts/AppleGaramond-LightItalic.ttf | 0
assets/fonts/AppleGaramond.ttf | 0
assets/fonts/HKGrotesk-Black.otf | 0
assets/fonts/HKGrotesk-Bold.otf | 0
assets/fonts/HKGrotesk-BoldItalic.otf | 0
assets/fonts/HKGrotesk-BoldLegacy.otf | 0
assets/fonts/HKGrotesk-BoldLegacyItalic.otf | 0
assets/fonts/HKGrotesk-ExtraBold.otf | 0
assets/fonts/HKGrotesk-Italic.otf | 0
assets/fonts/HKGrotesk-LegacyItalic.otf | 0
assets/fonts/HKGrotesk-Light.otf | 0
assets/fonts/HKGrotesk-LightItalic.otf | 0
assets/fonts/HKGrotesk-LightLegacy.otf | 0
assets/fonts/HKGrotesk-LightLegacyItalic.otf | 0
assets/fonts/HKGrotesk-Medium.otf | 0
assets/fonts/HKGrotesk-MediumItalic.otf | 0
assets/fonts/HKGrotesk-MediumLegacy.otf | 0
assets/fonts/HKGrotesk-MediumLegacyItalic.otf | 0
assets/fonts/HKGrotesk-Regular.otf | 0
assets/fonts/HKGrotesk-RegularLegacy.otf | 0
assets/fonts/HKGrotesk-SemiBold.otf | 0
assets/fonts/HKGrotesk-SemiBoldItalic.otf | 0
assets/fonts/HKGrotesk-SemiBoldLegacy.otf | 0
assets/fonts/HKGrotesk-SemiBoldLegacyItalic.otf | 0
assets/fonts/HKGroteskWide-Black.otf | 0
assets/fonts/HKGroteskWide-Bold.otf | 0
assets/fonts/HKGroteskWide-ExtraBold.otf | 0
assets/fonts/HKGroteskWide-Light.otf | 0
assets/fonts/HKGroteskWide-Medium.otf | 0
assets/fonts/HKGroteskWide-Regular.otf | 0
assets/fonts/HKGroteskWide-SemiBold.otf | 0
jekyll/update/2022/11/02/welcome-to-jekyll.html | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
44 files changed, 290 insertions(+)
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..763e53e 100644
--- /dev/null
+++ a/LICENSE.txt
@@ -1,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2022
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..af2f35f 100644
--- /dev/null
+++ a/README.md
@@ -1,0 +1,50 @@
+# yaqubroli-theme
+
+Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
+
+To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
+
+TODO: Delete this and the text above, and describe your gem
+
+## Installation
+
+Add this line to your Jekyll site's `Gemfile`:
+
+```ruby
+gem "yaqubroli-theme"
+```
+
+And add this line to your Jekyll site's `_config.yml`:
+
+```yaml
+theme: yaqubroli-theme
+```
+
+And then execute:
+
+ $ bundle
+
+Or install it yourself as:
+
+ $ gem install yaqubroli-theme
+
+## Usage
+
+TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
+
+## Contributing
+
+Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/yaqubroli-theme. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
+
+## Development
+
+To set up your environment to develop this theme, run `bundle install`.
+
+Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
+
+When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
+To add a custom directory to your theme-gem, please edit the regexp in `yaqubroli-theme.gemspec` accordingly.
+
+## License
+
+The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
diff --git a/feed.xml b/feed.xml
new file mode 100644
index 0000000..bc437f7 100644
--- /dev/null
+++ a/feed.xml
@@ -1,0 +1,17 @@
+Jekyll2022-11-04T21:37:24+00:00http://localhost:4000/feed.xmlJacob WalchukInitial commit.2022-11-02T15:38:58+00:002022-11-02T15:38:58+00:00http://localhost:4000/jekyll/update/2022/11/02/welcome-to-jekyllYou’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.
+
+
Jekyll requires blog post files to be named according to the following format:
+
+
YEAR-MONTH-DAY-title.MARKUP
+
+
Where YEAR is a four-digit number, MONTH and DAY are both two-digit numbers, and MARKUP is the file extension representing the format used in the file. After that, include 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:
+
+
defprint_hi(name)
+ puts"Hi, #{name}"
+end
+print_hi('Tom')
+#=> prints 'Hi, Tom' to STDOUT.
+
+
Check out the Jekyll docs for more info on how to get the most out of Jekyll. File all bugs/feature requests at Jekyll’s GitHub repo. If you have questions, you can ask them on Jekyll Talk.
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.
+
+
Jekyll requires blog post files to be named according to the following format:
+
+
YEAR-MONTH-DAY-title.MARKUP
+
+
Where YEAR is a four-digit number, MONTH and DAY are both two-digit numbers, and MARKUP is the file extension representing the format used in the file. After that, include 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:
+
+
defprint_hi(name)
+ puts"Hi, #{name}"
+end
+print_hi('Tom')
+#=> prints 'Hi, Tom' to STDOUT.
+
+
Check out the Jekyll docs for more info on how to get the most out of Jekyll. File all bugs/feature requests at Jekyll’s GitHub repo. If you have questions, you can ask them on Jekyll Talk.