diff --git a/.github/workflows/update-website.yml b/.github/workflows/update-website.yml deleted file mode 100644 index 9071754..0000000 --- a/.github/workflows/update-website.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Update Website - -on: - push: - branches: [ main ] - - workflow_dispatch: - -jobs: - build: - runs-on: self-hosted - - steps: - - uses: actions/checkout@v3 - - name: Update Website - run: | - JEKYLL_ENV=production bundle exec jekyll build - cd /usr/share/korbs-studio/runners/blue/website/_work/blueanimates/blueanimates/_site/ - sudo cp -R ./* /usr/share/nginx/blueanimates/website/ diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 700d055..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,13 +0,0 @@ -stages: - - build - -build-job: - stage: build - script: - - sudo chmod -R 777 ./ - - sudo bundle install - - bundle exec jekyll build - - mv ./_site/ ./blueanimates/ - - rm -R /usr/share/nginx/blueanimates/ - - cp -R ./blueanimates/ /usr/share/nginx/blueanimates/ - - rm -R ./blueanimates/ diff --git a/Gemfile b/Gemfile old mode 100644 new mode 100755 index 77f9b00..4170b10 --- a/Gemfile +++ b/Gemfile @@ -1,9 +1,6 @@ source "https://rubygems.org" gem "jekyll", "~> 4.2.2" gem "minima", "~> 2.5" -gem 'jekyll-seo-tag' -gem 'jekyll-sitemap' -gem 'jekyll-redirect-from' group :jekyll_plugins do gem "jekyll-feed", "~> 0.12" @@ -17,3 +14,8 @@ gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] gem "webrick", "~> 1.7" + +gem 'sassc', '~> 2.1' + +gem 'jekyll-redirect-from' +gem 'jekyll-sitemap' \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 93c0a27..3a56757 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,18 +1,28 @@ GEM remote: https://rubygems.org/ specs: - addressable (2.8.0) - public_suffix (>= 2.0.2, < 5.0) + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) colorator (1.1.0) - concurrent-ruby (1.1.10) + concurrent-ruby (1.3.5) em-websocket (0.5.3) eventmachine (>= 0.12.9) http_parser.rb (~> 0) eventmachine (1.2.7) - ffi (1.15.5) + ffi (1.17.1) + ffi (1.17.1-aarch64-linux-gnu) + ffi (1.17.1-aarch64-linux-musl) + ffi (1.17.1-arm-linux-gnu) + ffi (1.17.1-arm-linux-musl) + ffi (1.17.1-arm64-darwin) + ffi (1.17.1-x86-linux-gnu) + ffi (1.17.1-x86-linux-musl) + ffi (1.17.1-x86_64-darwin) + ffi (1.17.1-x86_64-linux-gnu) + ffi (1.17.1-x86_64-linux-musl) forwardable-extended (2.6.0) http_parser.rb (0.8.0) - i18n (1.10.0) + i18n (1.14.7) concurrent-ruby (~> 1.0) jekyll (4.2.2) addressable (~> 2.4) @@ -29,7 +39,7 @@ GEM rouge (~> 3.0) safe_yaml (~> 1.0) terminal-table (~> 2.0) - jekyll-feed (0.16.0) + jekyll-feed (0.17.0) jekyll (>= 3.7, < 5.0) jekyll-redirect-from (0.16.0) jekyll (>= 3.3, < 5.0) @@ -41,50 +51,60 @@ GEM jekyll (>= 3.7, < 5.0) jekyll-watch (2.2.1) listen (~> 3.0) - kramdown (2.4.0) - rexml + kramdown (2.5.1) + rexml (>= 3.3.9) kramdown-parser-gfm (1.1.0) kramdown (~> 2.0) - liquid (4.0.3) - listen (3.7.1) + liquid (4.0.4) + listen (3.9.0) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) mercenary (0.4.0) - minima (2.5.1) + minima (2.5.2) jekyll (>= 3.5, < 5.0) jekyll-feed (~> 0.9) jekyll-seo-tag (~> 2.1) pathutil (0.16.2) forwardable-extended (~> 2.6) - public_suffix (4.0.7) - rb-fsevent (0.11.1) - rb-inotify (0.10.1) + public_suffix (6.0.1) + rb-fsevent (0.11.2) + rb-inotify (0.11.1) ffi (~> 1.0) - rexml (3.2.5) - rouge (3.28.0) + rexml (3.4.0) + rouge (3.30.0) safe_yaml (1.0.5) sassc (2.4.0) ffi (~> 1.9) terminal-table (2.0.0) unicode-display_width (~> 1.1, >= 1.1.1) unicode-display_width (1.8.0) - webrick (1.7.0) + webrick (1.9.1) PLATFORMS - x86_64-linux + aarch64-linux-gnu + aarch64-linux-musl + arm-linux-gnu + arm-linux-musl + arm64-darwin + ruby + x86-linux-gnu + x86-linux-musl + x86_64-darwin + x86_64-linux-gnu + x86_64-linux-musl DEPENDENCIES http_parser.rb (~> 0.6.0) jekyll (~> 4.2.2) jekyll-feed (~> 0.12) jekyll-redirect-from - jekyll-seo-tag jekyll-sitemap minima (~> 2.5) + sassc (~> 2.1) tzinfo (~> 1.2) tzinfo-data wdm (~> 0.1.1) webrick (~> 1.7) BUNDLED WITH - 2.3.12 + 2.5.22 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 index 9613a48..7602752 --- a/LICENSE +++ b/LICENSE @@ -1,21 +1,22 @@ MIT License -Copyright (c) 2022 BlueAnimates +Copyright 2023-2025 SudoVanilla -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: +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. +In addition, the following restrictions apply: -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. +1. The Software and any modifications made to it may not be used for the purpose of training or improving machine learning algorithms, +including but not limited to artificial intelligence, natural language processing, or data mining. This condition applies to any derivatives, +modifications, or updates based on the Software code. Any usage of the Software in an AI-training dataset is considered a breach of this License. + +2. The Software may not be included in any dataset used for training or improving machine learning algorithms, +including but not limited to artificial intelligence, natural language processing, or data mining. + +3. Any person or organization found to be in violation of these restrictions will be subject to legal action and may be held liable +for any damages resulting from such use. + +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. \ No newline at end of file diff --git a/_config.yml b/_config.yml old mode 100644 new mode 100755 index ff64a48..7511d0f --- a/_config.yml +++ b/_config.yml @@ -1,7 +1,6 @@ -title: BlueAnimates -email: hello@blueanimates.com -description: >- - I am a 3D artist who primarily works with Minecraft-style creations and renders! You can find out more about me on my FAQ page. +title: Vacy +email: john.smith@example.org +description: baseurl: "" url: "" @@ -19,8 +18,8 @@ whitelist: include: - _pages -author: BlueAnimates +author: John Smith twitter: - username: BlueAnimates + username: JohnSmith card: summary \ No newline at end of file diff --git a/_includes/master/footer.html b/_includes/master/footer.html old mode 100644 new mode 100755 index 36b5260..b298ba1 --- a/_includes/master/footer.html +++ b/_includes/master/footer.html @@ -1,4 +1,4 @@ diff --git a/_includes/master/head.html b/_includes/master/head.html old mode 100644 new mode 100755 index 95b1603..b6e8a01 --- a/_includes/master/head.html +++ b/_includes/master/head.html @@ -9,8 +9,4 @@ - - > diff --git a/_includes/master/header.html b/_includes/master/header.html old mode 100644 new mode 100755 index 0befd18..a33b3f9 --- a/_includes/master/header.html +++ b/_includes/master/header.html @@ -1,6 +1,6 @@
-

BlueAnimates

+

Vacy Template

- - - - - + + + + +
diff --git a/_layouts/document.html b/_layouts/document.html old mode 100644 new mode 100755 index 23f4009..768f6a4 --- a/_layouts/document.html +++ b/_layouts/document.html @@ -2,7 +2,7 @@ {% include master/header.html %} - Christmas with Friend +

{{page.title}}

diff --git a/_layouts/downloads.html b/_layouts/downloads.html old mode 100644 new mode 100755 index 9863ec9..f5cfae4 --- a/_layouts/downloads.html +++ b/_layouts/downloads.html @@ -4,16 +4,16 @@ - +

{{page.title}}

-

Credits

-

Keep in mind that some of these assets will not be updated anymore so you may encounter issues. Also, please remember to credit me if you use them!

+

Header

+

Lorem ipsum odor amet, consectetuer adipiscing elit. Habitant libero praesent lacinia ante habitasse habitant fringilla purus nam.

{{content}} {% include master/footer.html %}
\ No newline at end of file diff --git a/_layouts/home.html b/_layouts/home.html old mode 100644 new mode 100755 index 3987520..6cb9e87 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -2,31 +2,32 @@ {% include master/header.html %} - +
- +
-

Welcome!

-

I am a 3D artist who primarily works with Minecraft-style creations and renders! You can find out more about me on my FAQ page.

- +

Vacy Template Website

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+
{% include master/footer.html %} \ No newline at end of file diff --git a/_pages/commissions/character-models.markdown b/_pages/commissions/character-models.markdown deleted file mode 100644 index 8c9a59d..0000000 --- a/_pages/commissions/character-models.markdown +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: document -title: Commissions - Renders -permalink: /commissions/renders/ ---- - -**Original Style Renders** - $10 Nitro - - - Includes bends, advanced faces, fingers (if wanted), etc. - - Advanced facial controls - - Due to time constraints, no group renders are available in this style. - -![img](/assets/images/Screenshot_20220430_225944.png) - -___ - -**Bare Bones Style Renders** - $5 Nitro - - - Similar to Minecraft's trailer style - - No fingers, advanced faces, etc. - -
- - -
\ No newline at end of file diff --git a/_pages/commissions/commisions.markdown b/_pages/commissions/commisions.markdown deleted file mode 100644 index 73ed05e..0000000 --- a/_pages/commissions/commisions.markdown +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: document -title: Commissions -permalink: /commissions/ ---- - -# Blue's Minecraft Commissions! - - - I do not have a credit card, so all payments must be in Discord Nitro. - - Please do not rush me to finish your commission! I have other things to do. - - I have the right to deny or cancel a commission at any time. - - If you'd like a preset, you have to provide me with a skin. - -I will NOT make: - - - Hateful Artwork - - Nudity/NSFW/Gore/Vore - - Furries - - HD SKins Presets/Renders - -Check out the [Renders page](./renders/) to see render pricing! - -Check out the [Character Models page](./character-models/) to see character pricing! diff --git a/_pages/commissions/renders.markdown b/_pages/commissions/renders.markdown deleted file mode 100644 index 9e822ce..0000000 --- a/_pages/commissions/renders.markdown +++ /dev/null @@ -1,36 +0,0 @@ ---- -layout: document -title: Commissions - Character Models -permalink: /commissions/character-models/ ---- - -**Presets / Character Models (Basic)** - $5 Nitro - - - Simple Extrusions & Shape Edits - - -![img](/assets/images/basic-model.png) - -___ - -**Presets / Character Models (Detailed)** - $10 Nitro - - - Custom Modeled Hair - - Advanced Extrusions/Shape Edits - - - -
-
- -

My Character

-
-
- -

BadBoyHalo

-
-
- -

Awesamdude

-
-
\ No newline at end of file diff --git a/_pages/contact.md b/_pages/contact.md deleted file mode 100644 index 474b104..0000000 --- a/_pages/contact.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: document -title: Contact -permalink: /contact/ ---- - - - - - -
- - - - - - - - - - - -
- -
\ No newline at end of file diff --git a/_pages/downloads.markdown b/_pages/downloads.markdown old mode 100644 new mode 100755 index 51bd32a..9aefbce --- a/_pages/downloads.markdown +++ b/_pages/downloads.markdown @@ -4,18 +4,18 @@ title: Downloads permalink: /downloads/ --- -|------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------:| -| | | -| Download | Download | +|------------------------------------------|:----------------------------------------:| +| | | +| [Download](#) | [Download](#) | -|------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------:| -| | | -| Download | Download | +|------------------------------------------|:----------------------------------------:| +| | | +| [Download](#) | [Download](#) | -|------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------:| -| | | -| Download | Download | +|------------------------------------------|:----------------------------------------:| +| | | +| [Download](#) | [Download](#) | -|------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------:| -| | | -| Download | Download | \ No newline at end of file +|------------------------------------------|:----------------------------------------:| +| | | +| [Download](#) | [Download](#) | diff --git a/_pages/faq.markdown b/_pages/faq.markdown old mode 100644 new mode 100755 index 6ae6b30..ab709bb --- a/_pages/faq.markdown +++ b/_pages/faq.markdown @@ -4,40 +4,30 @@ title: FAQ permalink: /faq/ --- -**Q: Who inspired you to start making 3D art-related content?** +**Q: Question goes here?** -A: People like Hapico, Blue Monkey, and many more animators inspire me to keep going with animation because it's something I really enjoy! +Answer here +**Q: Question goes here?** +Answer here -**Q: What software do you use?** +**Q: Question goes here?** -A: I use [Blender](https://www.blender.org/) for all of my 3D work! It's free and a great way to start your 3D journey. I highly recommend [Blender Guru's Donut Tutorial](https://www.youtube.com/watch?v=nIoXOplUvAw&list=PLjEaoINr3zgFX8ZsChQVQsuDSjEqdWMAD) for beginners. +Answer here - +**Q: Question goes here?** -**Q: When did you start making 3D art?** +Answer here -A: I started making 3D art in Blender when I was about 9 years old, and I am now 14! I started off making Roblox renders and then gradually got into making Minecraft things and I stuck with it. +**Q: Question goes here?** - +Answer here -**Q: How did you learn to use Blender?** +**Q: Question goes here?** -A: I actually managed to teach myself how to use it when I first started out, which is a very dumb thing to do when you are starting in a program like Blender. Trust me, just follow tutorials.. it'll make the learning experience much better. - - - -**Q: Can I join your team? / Can you join my team?** - -A: I am not interested in working with any more teams at the moment. - - - -**Q: Can you make me a free render?** - -A: No thanks. I don't take requests right now and my commissions are closed. Sorry! \ No newline at end of file +Answer here diff --git a/_pages/index.markdown b/_pages/index.markdown old mode 100644 new mode 100755 diff --git a/_pages/portfolio.markdown b/_pages/portfolio.markdown old mode 100644 new mode 100755 index 388ce28..bdc4a09 --- a/_pages/portfolio.markdown +++ b/_pages/portfolio.markdown @@ -8,53 +8,45 @@ permalink: /portfolio/
# 2021 -## Animations +## Example -|-----------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------:| -| | | -| Show Yourself - Among Us Animation #shorts | "The Beginning" - Steve's Adventures Part 1 | +|--------------------------------------------------|:-------------------------------------------------------:|:-------------------------------------------------------:| +| | | | +| Example | Example | Example | -|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------:| -| | | -| Baby Trent's Christmas - Jack Stauber Minecraft Animation | Vibrant Eyes - Dream SMP Short | +## Example -## Renders +|--------------------------------------------------|:-------------------------------------------------------:| +| | | +| Example | Example | -|------------------------------------------------------|:----------------------------------------------------------:| -| | | -| | | +## Example -## Character Models - -|------------------------------------------------------|:-----------------------------------------------:|:----------------------------------------------:| -| | | | -| Blue (Me) | BadBoyHalo | Awesamdude | +|--------------------------------------------------|:-------------------------------------------------------:| +| | | +| Example | Example |
# 2022 -## Animations +## Example -|----------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------:| -| | | -| Grian HAUNTS Mumbo - Hermitcraft Animation | We Don't Talk About Bruno - Minecraft Encanto Short | +|--------------------------------------------------|:-------------------------------------------------------:|:-------------------------------------------------------:| +| | | | +| Example | Example | Example | -## Renders - -|-------------------------------------------------------------------|:--------------------------------------------------------------------:|:-----------------------------------------------------------------:|:--------------------------------------------------------------------:| -| | | | | -| Steve's Minecraft Adventures 2 - Teaser | Main Channel Icon | Second Channel Icon | Tutorials Channel Icon | - -|---------------------------------------------------- |:------------------------------------------------------------------------------------:|:-------------------------------------------------:|:------------------------------------------------:| -| | | | | -| Dream Manhunt Render | Dream Animation - Teaser | Angry Emote | Fear Emote | - -## Character Models +## Example |--------------------------------------------------|:-------------------------------------------------------:| -| | | -| Grian | Dream | +| | | +| Example | Example | + +## Example + +|--------------------------------------------------|:-------------------------------------------------------:| +| | | +| Example | Example |
\ No newline at end of file diff --git a/_pages/thanks-4-contacting.md b/_pages/thanks-4-contacting.md deleted file mode 100644 index 86f60f9..0000000 --- a/_pages/thanks-4-contacting.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: document -title: Thank You -permalink: /contact/thanks/ ---- - - Thank you for contacting me, I'll try to get back to you when I can. \ No newline at end of file diff --git a/assets/css/master.css b/assets/css/master.css old mode 100644 new mode 100755 index be300ed..373a6be --- a/assets/css/master.css +++ b/assets/css/master.css @@ -1,12 +1,12 @@ :root { - --blue: #425a86; - --blue-light: #6d9eeb; - --blue-light-hover: #a1bae2; + --theme: #42866d; + --theme-light: #4c954e; + --theme-light-hover: #80c786; --max-width: clamp(0px, calc(100% - 50px), 1280px); } a { - color: var(--blue-light); + color: var(--theme-light); text-decoration: none; } img { @@ -18,7 +18,7 @@ video { width: 100%; } button { - background: var(--blue-light); + background: var(--theme-light); color: white; border-radius: 4px; border: none; @@ -27,13 +27,13 @@ button { transition: 0.3s background; } button:hover { - background: var(--blue-light-hover); + background: var(--theme-light-hover); } #highlight { - color: var(--blue-light); + color: var(--theme-light); } ::selection { - background-color: var(--blue-light); + background-color: var(--theme-light); color: inherit; } @@ -48,7 +48,7 @@ body { #footer { display: grid; grid-template-columns: 50% 50%; - background: var(--blue); + background: var(--theme); color: white; padding: 0px 100%; left: 50%; @@ -97,7 +97,7 @@ hb { transition: 0.3s background; } .menu a:hover { - background: var(--blue-light-hover); + background: var(--theme-light-hover); cursor: pointer; } .socials a { @@ -112,7 +112,6 @@ banner img { width: 100%; height: 200px; object-fit: cover; - object-position: 0px -240px; opacity: 0.2; filter: saturate(0); /* transition: 2s object-position; @@ -126,7 +125,7 @@ banner::before { width: 100%; height: 200px; opacity: 1; - background: var(--blue); + background: var(--theme); z-index: -2; } @@ -153,7 +152,7 @@ banner::before { transition: 0.3s border-color, 0.3s background; } #extra-menu button:hover { - background: var(--blue-light-hover); + background: var(--theme-light-hover); } #extra-placeholder { margin-top: 260px; diff --git a/assets/images/Christmas with Friends.png b/assets/images/Christmas with Friends.png deleted file mode 100644 index 1636eb8..0000000 Binary files a/assets/images/Christmas with Friends.png and /dev/null differ diff --git a/assets/images/Exploration (0;00;00;00).png b/assets/images/Exploration (0;00;00;00).png deleted file mode 100644 index 72514d6..0000000 Binary files a/assets/images/Exploration (0;00;00;00).png and /dev/null differ diff --git a/assets/images/Screenshot_20220430_225944.png b/assets/images/Screenshot_20220430_225944.png deleted file mode 100644 index 49b2b6e..0000000 Binary files a/assets/images/Screenshot_20220430_225944.png and /dev/null differ diff --git a/assets/images/Teaser_1.png b/assets/images/Teaser_1.png deleted file mode 100644 index 4b86104..0000000 Binary files a/assets/images/Teaser_1.png and /dev/null differ diff --git a/assets/images/basic-model.png b/assets/images/basic-model.png deleted file mode 100644 index c1445bd..0000000 Binary files a/assets/images/basic-model.png and /dev/null differ diff --git a/assets/images/blue-holding-pickaxe.png b/assets/images/blue-holding-pickaxe.png deleted file mode 100644 index c02e705..0000000 Binary files a/assets/images/blue-holding-pickaxe.png and /dev/null differ diff --git a/assets/images/blue-waving.png b/assets/images/blue-waving.png deleted file mode 100644 index bac8d52..0000000 Binary files a/assets/images/blue-waving.png and /dev/null differ diff --git a/assets/images/blue.png b/assets/images/blue.png deleted file mode 100644 index db3eb03..0000000 Binary files a/assets/images/blue.png and /dev/null differ diff --git a/assets/images/for-downloads/Dog Rig.png b/assets/images/for-downloads/Dog Rig.png deleted file mode 100644 index ad43972..0000000 Binary files a/assets/images/for-downloads/Dog Rig.png and /dev/null differ diff --git a/assets/images/for-downloads/Phone.png b/assets/images/for-downloads/Phone.png deleted file mode 100644 index 4c021da..0000000 Binary files a/assets/images/for-downloads/Phone.png and /dev/null differ diff --git a/assets/images/for-downloads/Snowman Rig.png b/assets/images/for-downloads/Snowman Rig.png deleted file mode 100644 index 9e452d2..0000000 Binary files a/assets/images/for-downloads/Snowman Rig.png and /dev/null differ diff --git a/assets/images/for-downloads/VR Headset.png b/assets/images/for-downloads/VR Headset.png deleted file mode 100644 index 827f9fc..0000000 Binary files a/assets/images/for-downloads/VR Headset.png and /dev/null differ diff --git a/assets/images/for-downloads/bbhthumb.png b/assets/images/for-downloads/bbhthumb.png deleted file mode 100644 index f4e950f..0000000 Binary files a/assets/images/for-downloads/bbhthumb.png and /dev/null differ diff --git a/assets/images/for-downloads/dreamthumb.png b/assets/images/for-downloads/dreamthumb.png deleted file mode 100644 index d2e8c40..0000000 Binary files a/assets/images/for-downloads/dreamthumb.png and /dev/null differ diff --git a/assets/images/for-downloads/georgethumb.png b/assets/images/for-downloads/georgethumb.png deleted file mode 100644 index 2c3b5ca..0000000 Binary files a/assets/images/for-downloads/georgethumb.png and /dev/null differ diff --git a/assets/images/for-downloads/sapnapthumb.png b/assets/images/for-downloads/sapnapthumb.png deleted file mode 100644 index a037181..0000000 Binary files a/assets/images/for-downloads/sapnapthumb.png and /dev/null differ diff --git a/assets/images/models/2021/bbh.png b/assets/images/models/2021/bbh.png deleted file mode 100644 index 861073f..0000000 Binary files a/assets/images/models/2021/bbh.png and /dev/null differ diff --git a/assets/images/models/2021/blue.png b/assets/images/models/2021/blue.png deleted file mode 100644 index 746906f..0000000 Binary files a/assets/images/models/2021/blue.png and /dev/null differ diff --git a/assets/images/models/2021/sam.png b/assets/images/models/2021/sam.png deleted file mode 100644 index d2fc96e..0000000 Binary files a/assets/images/models/2021/sam.png and /dev/null differ diff --git a/assets/images/models/2022/Full Preset.png b/assets/images/models/2022/Full Preset.png deleted file mode 100644 index b648b86..0000000 Binary files a/assets/images/models/2022/Full Preset.png and /dev/null differ diff --git a/assets/images/models/2022/Grian.png b/assets/images/models/2022/Grian.png deleted file mode 100644 index 702b80c..0000000 Binary files a/assets/images/models/2022/Grian.png and /dev/null differ diff --git a/assets/images/pexels-francesco-ungaro-13786205.jpg b/assets/images/pexels-francesco-ungaro-13786205.jpg new file mode 100644 index 0000000..fa99998 Binary files /dev/null and b/assets/images/pexels-francesco-ungaro-13786205.jpg differ diff --git a/assets/images/render-1.png b/assets/images/render-1.png deleted file mode 100644 index f1f9e18..0000000 Binary files a/assets/images/render-1.png and /dev/null differ diff --git a/assets/images/render-2.png b/assets/images/render-2.png deleted file mode 100644 index 5843c69..0000000 Binary files a/assets/images/render-2.png and /dev/null differ diff --git a/assets/images/renders/2021/Banner.png b/assets/images/renders/2021/Banner.png deleted file mode 100644 index dfd86ca..0000000 Binary files a/assets/images/renders/2021/Banner.png and /dev/null differ diff --git a/assets/images/renders/2021/Final Render 2.png b/assets/images/renders/2021/Final Render 2.png deleted file mode 100644 index 50e0c8b..0000000 Binary files a/assets/images/renders/2021/Final Render 2.png and /dev/null differ diff --git a/assets/images/renders/2021/RanbooPanic2.png b/assets/images/renders/2021/RanbooPanic2.png deleted file mode 100644 index 8c1d23b..0000000 Binary files a/assets/images/renders/2021/RanbooPanic2.png and /dev/null differ diff --git a/assets/images/renders/2021/Render 3.png b/assets/images/renders/2021/Render 3.png deleted file mode 100644 index 919e4c7..0000000 Binary files a/assets/images/renders/2021/Render 3.png and /dev/null differ diff --git a/assets/images/renders/2022/Angry.png b/assets/images/renders/2022/Angry.png deleted file mode 100644 index a830fea..0000000 Binary files a/assets/images/renders/2022/Angry.png and /dev/null differ diff --git a/assets/images/renders/2022/Dream's Final Manhunt - Victory REVAMPED.png b/assets/images/renders/2022/Dream's Final Manhunt - Victory REVAMPED.png deleted file mode 100644 index 17b1fe2..0000000 Binary files a/assets/images/renders/2022/Dream's Final Manhunt - Victory REVAMPED.png and /dev/null differ diff --git a/assets/images/renders/2022/Fear.png b/assets/images/renders/2022/Fear.png deleted file mode 100644 index ad0c4e6..0000000 Binary files a/assets/images/renders/2022/Fear.png and /dev/null differ diff --git a/assets/images/renders/2022/Main Channel EDITED.png b/assets/images/renders/2022/Main Channel EDITED.png deleted file mode 100644 index 2006f39..0000000 Binary files a/assets/images/renders/2022/Main Channel EDITED.png and /dev/null differ diff --git a/assets/images/renders/2022/Second Channel EDITED.png b/assets/images/renders/2022/Second Channel EDITED.png deleted file mode 100644 index 24793f6..0000000 Binary files a/assets/images/renders/2022/Second Channel EDITED.png and /dev/null differ diff --git a/assets/images/renders/2022/Teaser 1.png b/assets/images/renders/2022/Teaser 1.png deleted file mode 100644 index 77fd21f..0000000 Binary files a/assets/images/renders/2022/Teaser 1.png and /dev/null differ diff --git a/assets/images/renders/2022/Tutorials Channel EDITED.png b/assets/images/renders/2022/Tutorials Channel EDITED.png deleted file mode 100644 index abc8acf..0000000 Binary files a/assets/images/renders/2022/Tutorials Channel EDITED.png and /dev/null differ diff --git a/assets/images/renders/2022/teaser1.png b/assets/images/renders/2022/teaser1.png deleted file mode 100644 index 4bef651..0000000 Binary files a/assets/images/renders/2022/teaser1.png and /dev/null differ diff --git a/assets/images/thumbnails/1.png b/assets/images/thumbnails/1.png deleted file mode 100644 index 718c921..0000000 Binary files a/assets/images/thumbnails/1.png and /dev/null differ diff --git a/assets/images/thumbnails/2.png b/assets/images/thumbnails/2.png deleted file mode 100644 index 794dd58..0000000 Binary files a/assets/images/thumbnails/2.png and /dev/null differ diff --git a/assets/images/thumbnails/3.png b/assets/images/thumbnails/3.png deleted file mode 100644 index af15518..0000000 Binary files a/assets/images/thumbnails/3.png and /dev/null differ diff --git a/assets/images/thumbnails/4.png b/assets/images/thumbnails/4.png deleted file mode 100644 index 9c3349c..0000000 Binary files a/assets/images/thumbnails/4.png and /dev/null differ diff --git a/assets/images/thumbnails/5.png b/assets/images/thumbnails/5.png deleted file mode 100644 index 7f3df12..0000000 Binary files a/assets/images/thumbnails/5.png and /dev/null differ diff --git a/assets/images/thumbnails/6.png b/assets/images/thumbnails/6.png deleted file mode 100644 index d53c09c..0000000 Binary files a/assets/images/thumbnails/6.png and /dev/null differ diff --git a/assets/js/scroll-header.js b/assets/js/scroll-header.js old mode 100644 new mode 100755 index 2830691..b1c51a6 --- a/assets/js/scroll-header.js +++ b/assets/js/scroll-header.js @@ -13,6 +13,6 @@ function headerScroll() { document.querySelector('hb').style.backgroundColor = 'transparent'; } if (scrollTop > 130 && scrollTop < 5000) { - document.querySelector('hb').style.backgroundColor = 'var(--blue)'; + document.querySelector('hb').style.backgroundColor = 'var(--theme)'; } } diff --git a/assets/js/tab-switcher.js b/assets/js/tab-switcher.js old mode 100644 new mode 100755 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..c47cbed --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +services: + jekyll: + image: bretfisher/jekyll-serve + volumes: + - .:/site + ports: + - '6075:4000' \ No newline at end of file