From 5370e2e6c3a9077847eddffc965c47240ebc594e Mon Sep 17 00:00:00 2001 From: Waldehyd Date: Wed, 17 Sep 2025 19:20:50 +0200 Subject: [PATCH] Move to Page based design --- _includes/header.html | 11 +- _projects/arts.md | 49 ++-- _projects/gallery.html | 2 + _site/arts/index.html | 195 ------------- _site/gallery/index.html | 19 +- _site/index.html | 19 +- _site/js/main.js | 73 ++--- _site/projects/index.html | 565 ++++++++++++++++++++++++++++++++++++++ js/main.js | 76 ++--- 9 files changed, 694 insertions(+), 315 deletions(-) delete mode 100644 _site/arts/index.html create mode 100644 _site/projects/index.html diff --git a/_includes/header.html b/_includes/header.html index 0b54e4d..1df59d2 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -83,6 +83,15 @@ {% endif %} + + + {% if site.author.meetup_name %} - + diff --git a/_projects/arts.md b/_projects/arts.md index 31cb022..9982d53 100644 --- a/_projects/arts.md +++ b/_projects/arts.md @@ -1,21 +1,34 @@ --- -title: "Cats Project" layout: default +robots: noindex +slug: projects --- -# ๐Ÿš€ Project Nebula - -Welcome to **Project Nebula**, a cosmic initiative to explore the outer edges of creativity. - -## ๐ŸŒŒ Features - -- ๐ŸŒ  Star-mapped navigation -- ๐Ÿ›ฐ๏ธ Real-time telemetry -- ๐Ÿง  Bullshit-assisted decision engine - -## ๐Ÿ“ฆ Installation - -```bash -git clone https://github.com/yourusername/project-nebula.git -cd project-nebula -npm install -``` \ No newline at end of file + diff --git a/_projects/gallery.html b/_projects/gallery.html index 93edb06..d70047d 100644 --- a/_projects/gallery.html +++ b/_projects/gallery.html @@ -2,6 +2,7 @@ layout: default slug: gallery --- +
+
diff --git a/_site/arts/index.html b/_site/arts/index.html deleted file mode 100644 index c99162c..0000000 --- a/_site/arts/index.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - Cats Project - - - - - - - - Cats Project - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
- -
- My Profile Photo -
- Second Profile Photo -
-

Simeon "Waldo" Wallrath

-
-
-

- PhD-Student in Chemistry Didactics, 3D-Artist, Musician, Game Developer -

-
-
- - - -
- -
- -
- -
- - -
-
-
-

๐Ÿš€ Project Nebula

- -

Welcome to Project Nebula, a cosmic initiative to explore the outer edges of creativity.

- -

๐ŸŒŒ Features

- -
    -
  • ๐ŸŒ  Star-mapped navigation
  • -
  • ๐Ÿ›ฐ๏ธ Real-time telemetry
  • -
  • ๐Ÿง  Bullshit-assisted decision engine
  • -
- -

๐Ÿ“ฆ Installation

- -
git clone https://github.com/yourusername/project-nebula.git
-cd project-nebula
-npm install
-
- -
- - - - - - -
- - diff --git a/_site/gallery/index.html b/_site/gallery/index.html index 4ba0835..9625e03 100644 --- a/_site/gallery/index.html +++ b/_site/gallery/index.html @@ -3,7 +3,7 @@ Gallery - + @@ -147,7 +147,7 @@ - + @@ -216,6 +216,15 @@ + + + @@ -238,7 +247,7 @@ - + @@ -296,8 +305,8 @@ - - + + diff --git a/_site/index.html b/_site/index.html index 1becbcb..a8adb9e 100644 --- a/_site/index.html +++ b/_site/index.html @@ -3,7 +3,7 @@ - + @@ -53,7 +53,7 @@ - + @@ -122,6 +122,15 @@ + + + @@ -144,7 +153,7 @@ - + @@ -263,8 +272,8 @@ - - + + diff --git a/_site/js/main.js b/_site/js/main.js index 0f73aa0..73e5928 100644 --- a/_site/js/main.js +++ b/_site/js/main.js @@ -1,51 +1,34 @@ -function toggleMobileMenu() { - $('.navigation-wrapper').toggleClass('visible'); - $('.btn-mobile-menu__icon').toggleClass('hidden'); - $('.btn-mobile-close__icon').toggleClass('hidden'); -} + $(document).ready(function () { + + $('a.blog-button').click(function (e) { + if ($('.panel-cover').hasClass('panel-cover--collapsed')) return + currentWidth = $('.panel-cover').width() + if (currentWidth < 960) { + $('.panel-cover').addClass('panel-cover--collapsed') + $('.content-wrapper').addClass('animated slideInRight') + } else { + $('.panel-cover').css('max-width', currentWidth) + $('.panel-cover').animate({ 'max-width': '530px', 'width': '40%' }, 400, swing = 'swing', function () { }) + } + }) -$(document).ready(function () { - $('a.panel-button').click(function (e) { - if ($('.content-wrapper').hasClass('showing')){ - $('.content-wrapper').removeClass('animated slideInRight') - $('.panel-cover').removeClass('panel-cover--collapsed') - $('.panel-cover').css('max-width', '100%') - $('.panel-cover').animate({'width': '100%'}, 400, swing = 'swing', function () {}) - $('.content-wrapper').removeClass('showing') - history.pushState("", document.title, window.location.pathname + window.location.search); - //window.location.hash = '' // leaves # - e.preventDefault(); - return; + if (window.location.hash && window.location.hash == '#blog') { + $('.panel-cover').addClass('panel-cover--collapsed') + } + + if (window.location.pathname !== '/' && window.location.pathname !== '/index.html') { + $('.panel-cover').addClass('panel-cover--collapsed') } - $('.panel-cover').addClass('panel-cover--collapsed'); - currentWidth = $('.panel-cover').width() - if (currentWidth < 960) { - $('.panel-cover').addClass('panel-cover--collapsed') - $('.content-wrapper').addClass('animated slideInRight') - } else { - $('.panel-cover').css('max-width', currentWidth) - $('.panel-cover').animate({'max-width': '530px', 'width': '40%'}, 400, swing = 'swing', function () {}) - } - $('.content-wrapper').addClass('showing'); - }) - if (window.location.hash && window.location.hash == '#projects') { - $('a.panel-button').click(); - } + $('.btn-mobile-menu').click(function () { + $('.navigation-wrapper').toggleClass('visible animated bounceInDown') + $('.btn-mobile-menu__icon').toggleClass('icon-list icon-x-circle animated fadeIn') + }) - if (window.location.pathname !== '/' && window.location.pathname !== '/index.html') { - $('.panel-cover').addClass('panel-cover--collapsed') - } + $('.navigation-wrapper .blog-button').click(function () { + $('.navigation-wrapper').toggleClass('visible') + $('.btn-mobile-menu__icon').toggleClass('icon-list icon-x-circle animated fadeIn') + }) - $('.btn-mobile-menu').click(function () { - if (!$('.navigation-wrapper').hasClass('animated bounceInDown')){ - $('.navigation-wrapper').addClass('animated bounceInDown'); - } - toggleMobileMenu(); - }) - - $('.navigation-wrapper .projects-button').click(function () { - toggleMobileMenu(); - }) -}) + }) \ No newline at end of file diff --git a/_site/projects/index.html b/_site/projects/index.html new file mode 100644 index 0000000..d1993d8 --- /dev/null +++ b/_site/projects/index.html @@ -0,0 +1,565 @@ + + + + + Arts + + + + + + + + + + Arts + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+ +
+ My Profile Photo +
+ Second Profile Photo +
+

Simeon "Waldo" Wallrath

+
+
+

+ PhD-Student in Chemistry Didactics, 3D-Artist, Musician, Game Developer +

+
+
+ + + +
+ +
+ +
+ +
+ + +
+
+ + + + + + + +
+ + diff --git a/js/main.js b/js/main.js index 690d55e..bc3923b 100644 --- a/js/main.js +++ b/js/main.js @@ -1,56 +1,40 @@ --- layout: null sitemap: - exclude: 'yes' +exclude: 'yes' --- -function toggleMobileMenu() { - $('.navigation-wrapper').toggleClass('visible'); - $('.btn-mobile-menu__icon').toggleClass('hidden'); - $('.btn-mobile-close__icon').toggleClass('hidden'); -} -$(document).ready(function () { - $('a.panel-button').click(function (e) { - if ($('.content-wrapper').hasClass('showing')){ - $('.content-wrapper').removeClass('animated slideInRight') - $('.panel-cover').removeClass('panel-cover--collapsed') - $('.panel-cover').css('max-width', '100%') - $('.panel-cover').animate({'width': '100%'}, 400, swing = 'swing', function () {}) - $('.content-wrapper').removeClass('showing') - history.pushState("", document.title, window.location.pathname + window.location.search); - //window.location.hash = '' // leaves # - e.preventDefault(); - return; - } - - $('.panel-cover').addClass('panel-cover--collapsed'); - currentWidth = $('.panel-cover').width() - if (currentWidth < 960) { + $(document).ready(function () { + {% if site.disable_landing_page != true %} + $('a.blog-button').click(function (e) { + if ($('.panel-cover').hasClass('panel-cover--collapsed')) return + currentWidth = $('.panel-cover').width() + if (currentWidth < 960) { + $('.panel-cover').addClass('panel-cover--collapsed') + $('.content-wrapper').addClass('animated slideInRight') + } else { + $('.panel-cover').css('max-width', currentWidth) + $('.panel-cover').animate({ 'max-width': '530px', 'width': '40%' }, 400, swing = 'swing', function () { }) + } + }) + + if (window.location.hash && window.location.hash == '#blog') { $('.panel-cover').addClass('panel-cover--collapsed') - $('.content-wrapper').addClass('animated slideInRight') - } else { - $('.panel-cover').css('max-width', currentWidth) - $('.panel-cover').animate({'max-width': '530px', 'width': '40%'}, 400, swing = 'swing', function () {}) } - $('.content-wrapper').addClass('showing'); - }) - if (window.location.hash && window.location.hash == '#projects') { - $('a.panel-button').click(); - } - - if (window.location.pathname !== '{{ site.baseurl }}/' && window.location.pathname !== '{{ site.baseurl }}/index.html') { - $('.panel-cover').addClass('panel-cover--collapsed') - } - - $('.btn-mobile-menu').click(function () { - if (!$('.navigation-wrapper').hasClass('animated bounceInDown')){ - $('.navigation-wrapper').addClass('animated bounceInDown'); + if (window.location.pathname !== '{{ site.baseurl }}/' && window.location.pathname !== '{{ site.baseurl }}/index.html') { + $('.panel-cover').addClass('panel-cover--collapsed') } - toggleMobileMenu(); - }) + {% endif %} - $('.navigation-wrapper .projects-button').click(function () { - toggleMobileMenu(); - }) -}) + $('.btn-mobile-menu').click(function () { + $('.navigation-wrapper').toggleClass('visible animated bounceInDown') + $('.btn-mobile-menu__icon').toggleClass('icon-list icon-x-circle animated fadeIn') + }) + + $('.navigation-wrapper .blog-button').click(function () { + $('.navigation-wrapper').toggleClass('visible') + $('.btn-mobile-menu__icon').toggleClass('icon-list icon-x-circle animated fadeIn') + }) + + }) \ No newline at end of file