Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
2023-07-17 UPDATE
  • Loading branch information
alphazero-official committed Jul 16, 2023
1 parent d820230 commit 5abb42e
Show file tree
Hide file tree
Showing 17 changed files with 94 additions and 36 deletions.
7 changes: 4 additions & 3 deletions .vs/VSWorkspaceState.json
Expand Up @@ -4,12 +4,13 @@
"\\assets",
"\\assets\\js",
"\\assets\\sound",
"\\_about",
"\\_credits",
"\\_data",
"\\_includes",
"\\_layouts",
"\\_posts"
"\\_posts",
"\\_sass",
"\\_sass\\minima"
],
"SelectedNode": "\\_posts\\2023-07-15-heeyy.md",
"PreviewInSolutionExplorer": false
}
Binary file modified .vs/alphazero-official.github.io/v16/.suo
Binary file not shown.
Binary file modified .vs/slnx.sqlite
Binary file not shown.
2 changes: 1 addition & 1 deletion _about/1oolm.md
Expand Up @@ -11,4 +11,4 @@ title: About 1oolm

#### Contributions include:
- alpha.zero
- Most of the programming, design, ideas, and overall lead. <br>I'm the creator, man.
- Most of the programming, design, ideas, and overall lead
4 changes: 2 additions & 2 deletions _config.yml
@@ -1,4 +1,4 @@
# Welcome to Jekyll!
# 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
Expand All @@ -18,7 +18,7 @@
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.

title: alpha.zero
title: αlpha.zero
email: dotzeroalpha@gmail.com
description: >- # this means to ignore newlines until "baseurl:"
baseurl: # the subpath of your site, e.g. /blog
Expand Down
5 changes: 4 additions & 1 deletion _credits/acknowledgements.md
Expand Up @@ -5,4 +5,7 @@ permalink: /acknowledgements/
---
If we yoinked something that should be acknowledged into our stuff, (like an open-source library) it should be here.
<br>
#### HALLEY LABS: Some sounds from their [sample packs](https://heckscaper.com/resources/samples.html). <br> [(HLRC LICENSE A)](https://heckscaper.com/resources/license1.html)
#### HALLEY LABS: Some sounds from their [sample packs](https://heckscaper.com/resources/samples.html). <br> [(HLRC LICENSE A)](https://heckscaper.com/resources/license1.html)
<br>
#### The Jekyll Team: [Jekyll](https://jekyllrb.com) (This site runs on it)
#### Christian Fei: [Simple-Jekyll-Search](https://github.com/christian-fei/Simple-Jekyll-Search)
12 changes: 5 additions & 7 deletions _credits/team.md
Expand Up @@ -3,16 +3,14 @@ layout: page
title: Team
permalink: /team/
---

<font color="#CCCCCC" size="5"> <a href="/contributors/">Contributors</a> / <a href="/acknowledgements/">Acknowledgements</a> / <a href="/specialthanks/">Special Thanks</a></font>
<br>
<div id="line"><hr /></div>
<br>
### alpha.zero is:
{% for member in site.data.staff %}
<h4>
<a href="{{ member.link }}"><font color="{{ member.color }}">{{ member.name }}</font></a>: {{ member.credit }}
</h4>
{% endfor %}
[TBA] <font color="#AAAAAA">some other people too?</font> <br>
<br>
<br>


#### You can also view lists of [contributors](/contributors/), [acknowledgements](/acknowledgements/) and [special thanks](/specialthanks/)
[TBA] <font color="#AAAAAA">some other people too?</font> <br>
28 changes: 18 additions & 10 deletions _includes/header.html
Expand Up @@ -4,27 +4,35 @@
{%- assign default_paths = site.pages | map: "path" -%}
{%- assign page_paths = site.header_pages | default: default_paths -%}
<a class="site-title" rel="author" href="{{ "/" | relative_url }}"><img src="/assets/image/AZ2022.png" alt="AZ2022" width="42" /></a>
<div id="search" class="search">
<input type="text" id="search-input" placeholder="search title/date/category">
<ul id="results-container"></ul>
</div>

<script src="/assets/js/search.js" type="text/javascript"></script>

<!-- Configuration -->
<script>
SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
json: '/search.json',
searchResultTemplate: '<li><div><a href="{url}">{title}</a><br><font color="#999999"><span>{date}</span></font></div></li>',
})
</script>
{%- if page_paths -%}
<nav class="site-nav">
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger">
<span class="menu-icon">
<svg viewBox="0 0 18 15" width="18px" height="15px">
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z" />
</svg>
</span>
</label>

<div class="trigger">
<div class="trigger" align="center">
{%- for path in page_paths -%}
{%- assign my_page = site.pages | where: "path", path | first -%}
{%- if my_page.title -%}
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
{%- endif -%}
{%- endfor -%}
</div>

</nav>
{%- endif -%}

</div>
</header>
2 changes: 0 additions & 2 deletions _layouts/posts.html
Expand Up @@ -5,8 +5,6 @@
<div class="posts">
{{ content }}



{%- if site.posts.size > 0 -%}
<h1 class="post-list-heading">{{ page.list_title | default: "Posts" }} (<u><a href="/categories/">search</a></u>)</h1>
<div id="line"><hr /></div>
Expand Down
2 changes: 1 addition & 1 deletion _posts/2023-07-04-burger.md
Expand Up @@ -2,7 +2,7 @@
layout: post
title: burger
date: <2023-07-04>
categories: Stupid
categories: Shitpost
author: 1oolm
comments: true
---
Expand Down
15 changes: 15 additions & 0 deletions _posts/2023-07-16-heeyy.md
@@ -0,0 +1,15 @@
---
layout: post
title: Site UPDAT 4
date: <2023-07-16>
categories: [Updates, Website]
author: 1oolm
comments: true
---
EVEN MORE WORK. I did speedruns yesterday, so this took a bit.

Today I:
- Added a searchbar. Aligning it took 2 DAYS TOTAL.
- Stylised alpha.zero as &alpha;lpha.zero because it's funny
- //<font color="#DDDDDD">THE LINE</font>// now takes a percentage of the screen instead of a set amount of pixels, fixing appearance on mobile etc.
- Little changes here and there (About/Team organisation, etc.)
5 changes: 3 additions & 2 deletions _sass/minima/_base.scss
Expand Up @@ -180,6 +180,7 @@ pre {
margin-left: auto;
padding-right: $spacing-unit;
padding-left: $spacing-unit;

@extend %clearfix;

@include media-query($on-laptop) {
Expand Down Expand Up @@ -234,13 +235,13 @@ hr {

#line {
float: left;
width: 731px;
width: 60%;
height: 10px;
}

#line-s {
float: left;
width: 300px;
width: 40%;
height: 10px;
}

Expand Down
23 changes: 22 additions & 1 deletion _sass/minima/_layout.scss
Expand Up @@ -24,12 +24,33 @@
}
}

input,
textarea {
font-family: $base-font-family;
font-size: 100%;
width: 90%;
background: #333333;
border-color: #AAAAAA;
color: white;
display: inline;
}

.search {
text-align: center;
width: 40%;
float: left;
position: relative;
align-content:center;
margin-top: 2%;
margin-bottom: 0px;
}

.site-nav {
float: right;
line-height: $base-line-height * $base-font-size * 2.25;

.nav-trigger {
display: none;
display: inline-block;
}

.menu-icon {
Expand Down
4 changes: 2 additions & 2 deletions about.md
Expand Up @@ -3,8 +3,8 @@ layout: page
title: About
permalink: /about/
---
**alpha.zero** is a development studio started by 1oolm in 2022. <br>
We're just a team of teens doing stuff we want, mostly focusing on game development.
**alpha.zero** (or stylised: &alpha;lpha.zero) is a development studio started by 1oolm in 2022. <br>
We're just a team of teens doing stuff we want, be it games, music, or whatever! Just havin' fun in the world, with our community. &#129293;
<br>
### [TBA]
<font size="6" color="AAAAFF"><a href="/team/"><u>Team List</u></a></font>
6 changes: 6 additions & 0 deletions assets/js/search.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file removed assets/js/sjs.js
Empty file.
15 changes: 11 additions & 4 deletions search.json
@@ -1,14 +1,21 @@
---
layout: none
---
[
{% for post in site.posts %}
{

"title" : "{{ post.title | escape }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | join: ', ' }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"date" : "{{ post.date }}"
"date" : "{{ post.date | date_to_string }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
,
{% for kitty in site.about %}
{

"title" : "{{ kitty.title | strip_html | escape }}",
"url" : "{{ site.baseurl }}{{ kitty.url }}",
"date" : "[no date]"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]

0 comments on commit 5abb42e

Please sign in to comment.