diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json index 1a350d0..cc89b8a 100644 --- a/.vs/VSWorkspaceState.json +++ b/.vs/VSWorkspaceState.json @@ -1,8 +1,11 @@ { "ExpandedNodes": [ "", - "\\_about" + "\\assets", + "\\assets\\image", + "\\_about", + "\\_credits" ], - "SelectedNode": "\\_about\\extremisea.md", + "SelectedNode": "\\_credits\\acknowledgements.md", "PreviewInSolutionExplorer": false } \ No newline at end of file diff --git a/.vs/alphazero-official.github.io/v16/.suo b/.vs/alphazero-official.github.io/v16/.suo index 60e8bf8..35f3f66 100644 Binary files a/.vs/alphazero-official.github.io/v16/.suo and b/.vs/alphazero-official.github.io/v16/.suo differ diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite index 88a05b0..56116f3 100644 Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ diff --git a/_about/1oolm.md b/_about/1oolm.md index 0f26c39..08b7609 100644 --- a/_about/1oolm.md +++ b/_about/1oolm.md @@ -1,8 +1,4 @@ --- -name: 1oolm -credit: Lead Developer -color: "#4F0985" -link: /about/1oolm.html layout: page title: About 1oolm --- diff --git a/_about/clickerty.md b/_about/clickerty.md index 89b8850..7e84770 100644 --- a/_about/clickerty.md +++ b/_about/clickerty.md @@ -1,8 +1,4 @@ --- -name: Clickerty -credit: Writer & Designer -color: "#0F65AB" -link: /about/clickerty.html layout: page title: About Clickerty --- diff --git a/_about/extremisea.md b/_about/extremisea.md index 6cf3e5b..e3d4ff2 100644 --- a/_about/extremisea.md +++ b/_about/extremisea.md @@ -1,8 +1,4 @@ --- -name: Extremisea -credit: Writing & Design Assistance -color: "#63C5DA" -link: /about/extremisea.html layout: page title: About extremisea --- diff --git a/_about/masernerd.md b/_about/masernerd.md index f1c091c..8ea49b5 100644 --- a/_about/masernerd.md +++ b/_about/masernerd.md @@ -1,14 +1,12 @@ --- -name: Masernerd -credit: Voice Actor -color: "#910FAB" -link: /about/masernerd.html layout: page title: About Masernerd --- -**Masernerd** (a.k.a. Masternerd, Mazerderd or Mas) is a person. +**Masernerd** (a.k.a. Masternerd, Mazerderd or Mas) is a contributor for alpha.zero. TBA idk let him write this one if he wants + +His involvement currently doesn't go much further than *Masernerd Mode*, an inside joke option in WHG Project started by a dream 1oolm had. After asking ChatGPT for ideas regarding the option, it's been worked into implementation, also sparking the Random Settings category, containing similar ""fun"" options.

#### Contributions include: diff --git a/_credits/contributors.md b/_credits/contributors.md index 03a96b3..cc34755 100644 --- a/_credits/contributors.md +++ b/_credits/contributors.md @@ -3,6 +3,7 @@ layout: page title: Contributors permalink: /contributors/ --- +{% assign mas = site.data.contributors["masernerd"] %} List of contributions made by people past and present.
(Might not be exhaustive)

@@ -14,4 +15,6 @@ AddisonJudah, Artem4ikBaik, badass person 500, Dgiorn, Instatex, InvadedPurple,

## Miscellaneous +{{ mas.name }}: {{ mas.credit }} +
MasterCatGodsWhyIms: Original idea for WHG Project \ No newline at end of file diff --git a/_credits/team.md b/_credits/team.md index f49c596..150bca0 100644 --- a/_credits/team.md +++ b/_credits/team.md @@ -5,7 +5,7 @@ permalink: /team/ --- ### alpha.zero is: -{% for member in site.about %} +{% for member in site.data.staff %}

{{ member.name }}: {{ member.credit }}

@@ -14,4 +14,5 @@ permalink: /team/

+ #### You can also view lists of [contributors](/contributors/), [acknowledgements](/acknowledgements/) and [special thanks](/specialthanks/) diff --git a/_data/contributors.yml b/_data/contributors.yml new file mode 100644 index 0000000..3e8b124 --- /dev/null +++ b/_data/contributors.yml @@ -0,0 +1,5 @@ +masernerd: + name: Masernerd # Proper name + credit: Guest Voice Actor # What the person has done + color: "#910FAB" # Name colour + link: /about/masernerd.html # Link to about page (if any exists) \ No newline at end of file diff --git a/_data/staff.yml b/_data/staff.yml new file mode 100644 index 0000000..3eaedc9 --- /dev/null +++ b/_data/staff.yml @@ -0,0 +1,14 @@ +- name: 1oolm # Proper name + credit: Lead Developer # Staff position/contribution + color: "#4F0985" # Name colour + link: /about/1oolm.html # Link to about page + +- name: Clickerty + credit: Writer & Designer + color: "#0F65AB" + link: /about/clickerty.html + +- name: Extremisea + credit: Writing & Design Assistance + color: "#63C5DA" + link: /about/extremisea.html \ No newline at end of file diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..cf24f85 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,24 @@ + diff --git a/_includes/google-analytics.html b/_includes/google-analytics.html new file mode 100644 index 0000000..e9afb20 --- /dev/null +++ b/_includes/google-analytics.html @@ -0,0 +1,12 @@ + + diff --git a/_includes/head.html b/_includes/head.html index 2905b2e..b92598e 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -1,18 +1,18 @@ - - - - {%- seo -%} - - - - - - - - - {%- feed_meta -%} - {%- if jekyll.environment == 'production' and site.google_analytics -%} + + + + {%- seo -%} + + + + + + + + + {%- feed_meta -%} + {%- if jekyll.environment == 'production' and site.google_analytics -%} {%- include google-analytics.html -%} - {%- endif -%} + {%- endif -%} diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..4e3ceda --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,30 @@ + diff --git a/_includes/icon-github.html b/_includes/icon-github.html new file mode 100644 index 0000000..e501a16 --- /dev/null +++ b/_includes/icon-github.html @@ -0,0 +1 @@ +{% include icon-github.svg %}{{ include.username }} diff --git a/_includes/icon-github.svg b/_includes/icon-github.svg new file mode 100644 index 0000000..e6c5f6d --- /dev/null +++ b/_includes/icon-github.svg @@ -0,0 +1 @@ + diff --git a/_includes/icon-twitter.html b/_includes/icon-twitter.html new file mode 100644 index 0000000..e623dbd --- /dev/null +++ b/_includes/icon-twitter.html @@ -0,0 +1 @@ +{% include icon-twitter.svg %}{{ include.username }} diff --git a/_includes/icon-twitter.svg b/_includes/icon-twitter.svg new file mode 100644 index 0000000..efc0ecf --- /dev/null +++ b/_includes/icon-twitter.svg @@ -0,0 +1 @@ + diff --git a/_includes/social.html b/_includes/social.html new file mode 100644 index 0000000..44046b8 --- /dev/null +++ b/_includes/social.html @@ -0,0 +1,14 @@ + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..58e141b --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,20 @@ + + + + {%- include head.html -%} + + + + {%- include header.html -%} + +
+
+ {{ content }} +
+
+ + {%- include footer.html -%} + + + + diff --git a/_layouts/home.html b/_layouts/home.html index 461bbc5..05a8e94 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -8,27 +8,4 @@

{{ page.title }}

{%- endif -%} {{ content }} - - {%- if site.posts.size > 0 -%} -

{{ page.list_title | default: "Posts" }}

- - -

(subscribe via RSS)

- {%- endif -%} - diff --git a/_layouts/posts.html b/_layouts/posts.html new file mode 100644 index 0000000..10fb41e --- /dev/null +++ b/_layouts/posts.html @@ -0,0 +1,31 @@ +--- +layout: default +--- + +
+ {{ content }} + + + + {%- if site.posts.size > 0 -%} +

{{ page.list_title | default: "Posts" }}

+

(subscribe via RSS)

+ + {%- endif -%} + +
diff --git a/_posts/2023-07-13-mhmmhm.md b/_posts/2023-07-13-mhmmhm.md new file mode 100644 index 0000000..a026a35 --- /dev/null +++ b/_posts/2023-07-13-mhmmhm.md @@ -0,0 +1,19 @@ +--- +layout: post +title: More site updates +date: <2023-07-13> +categories: news +author: 1oolm +--- +Still working + +Today I: +- Slightly cleaned up the footer area +- Added more pages to the credits (contributors, acknowledgements and special thanks) +- Moved the Posts list from the home page to /posts +- Redid the backend of the staff list again (staff.yml + contributors.yml) +- Moved Masernerd to Contributors +- New home page w/randomised message. My first experience with JavaScript. Interesting for sure. I can do +- Added © to the footer. Not sure how accurate that is, though. + + \ No newline at end of file diff --git a/about.md b/about.md index 5c8ec6a..2620d1a 100644 --- a/about.md +++ b/about.md @@ -6,6 +6,5 @@ permalink: /about/ alpha.zero is a development studio started by 1oolm in 2022. We do uhh.. can we update this page later? Somehow nothing happened in an entire year.
### [TBA] -
-(A list of the people part of alpha.zero can be found [here](/team/)) \ No newline at end of file +A list of the people part of alpha.zero can be found [here](/team/) \ No newline at end of file diff --git a/accomplishments.md b/accomplishments.md index be80895..e5d2565 100644 --- a/accomplishments.md +++ b/accomplishments.md @@ -1,5 +1,5 @@ --- -layout: page -title: Accomplishments +layout: default permalink: /accomplishments/ --- +

Accomplishments

\ No newline at end of file diff --git a/assets/image/AZ2022.png b/assets/image/AZ2022.png new file mode 100644 index 0000000..45699ea Binary files /dev/null and b/assets/image/AZ2022.png differ diff --git a/assets/js/glitch.js b/assets/js/glitch.js new file mode 100644 index 0000000..357f901 --- /dev/null +++ b/assets/js/glitch.js @@ -0,0 +1,23 @@ +var text = "stuff like this" +const alpha = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', ' ', "'"]; +var output = ""; +var progress = 0; +var len = 0; + + +function glitch() { + len = text.length; + if (progress >= len) { + return; + } + var randomNums = Math.floor(Math.random() * alpha.length) + if (alpha[randomNums] == text[progress]) { + output += text[progress]; + document.getElementById("text").textContent = `${output}` + progress++; + } else { + document.getElementById("text").textContent = `${output}${alpha[randomNums]}` + } + requestAnimationFrame(glitch); +} +glitch() \ No newline at end of file diff --git a/index.markdown b/index.markdown deleted file mode 100644 index 0671507..0000000 --- a/index.markdown +++ /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/index.md b/index.md new file mode 100644 index 0000000..c004c8c --- /dev/null +++ b/index.md @@ -0,0 +1,29 @@ +--- +layout: home +--- + +

+
+

Javascript error! help

+ +
+

+ABOUT +/ +POSTS +

\ No newline at end of file diff --git a/posts.md b/posts.md new file mode 100644 index 0000000..647ffdd --- /dev/null +++ b/posts.md @@ -0,0 +1,4 @@ +--- +layout: posts +title: Posts +--- \ No newline at end of file