Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
wawa
  • Loading branch information
alphazero-official committed Jul 19, 2023
1 parent 88f4ce5 commit 8e1fc2e
Show file tree
Hide file tree
Showing 12 changed files with 79 additions and 22 deletions.
12 changes: 6 additions & 6 deletions .vs/VSWorkspaceState.json
Expand Up @@ -2,15 +2,15 @@
"ExpandedNodes": [
"",
"\\assets",
"\\assets\\js",
"\\assets\\sound",
"\\assets\\image",
"\\assets\\music",
"\\assets\\music\\1kije3",
"\\_about",
"\\_credits",
"\\_data",
"\\_includes",
"\\_layouts",
"\\_sass",
"\\_sass\\minima"
"\\_layouts"
],
"SelectedNode": "\\_layouts\\posts.html",
"SelectedNode": "\\_data\\contributors.yml",
"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.
8 changes: 8 additions & 0 deletions _data/music.yml
@@ -0,0 +1,8 @@
- title: "1_KIJE^3"
artist: "1oolm"
cover: "/assets/music/1kije3/cover.jpg"
link: "https://1oolm.bandcamp.com/track/1-kije-3"
length: "3:48"
genres: "lo-fi, bass"
year: 2023
type: single
11 changes: 11 additions & 0 deletions _data/musictypeinfo.yml
@@ -0,0 +1,11 @@
single:
link: "https://en.wikipedia.org/wiki/Single_(music)"

EP:
link: "https://en.wikipedia.org/wiki/Extended_play"

album:
link: "https://en.wikipedia.org/wiki/Album"

LP:
link: "https://en.wikipedia.org/wiki/LP_record"
25 changes: 25 additions & 0 deletions _layouts/music.html
@@ -0,0 +1,25 @@
---
layout: default
---
<article class="post">
<header class="post-header">
<h1 class="post-title">{{ page.title | escape }}</h1>
</header>
<div id="line"><hr /></div>
<br>
<br>
{{ content }}
<br>
<div class="release-list">
{%- for release in site.data.music -%}
{% assign releasetype = release.type %}
<div class="release" style="background-color: black; color: white; padding: 20px; border: double; border-color: white; height: 100%; width: 90%; object-fit: contain; ">
<img src={{ release.cover }} style="float: left; margin-right: 5%; background-size:contain; margin-bottom: 1em; max-block-size:100%; max-height:100%; width:14%; margin-right=5%; margin-bottom:5%; object-fit:contain;"></img>
<h2><a href={{ release.link }}>{{ release.title }}</a> ({{ release.year }})</h2>
<h4><a href={{ site.data.musictypeinfo[releasetype].link }}>{{ release.type }}</a> by {{ release.artist }} | {{ release.genres }} | {{ release.length }}</h4>
</div>
{% unless forloop.last %}<br>{% endunless %}
{%- endfor -%}
</div>
<br />
</article>
15 changes: 0 additions & 15 deletions _plugins/rendertime.rb

This file was deleted.

9 changes: 8 additions & 1 deletion _sass/minima/_layout.scss
Expand Up @@ -37,7 +37,7 @@ textarea {

.search {
text-align: center;
width: 69%;
width: 60%;
float: left;
position: relative;
align-content:center;
Expand Down Expand Up @@ -126,6 +126,13 @@ ul {
}
}

.release-list {
.release {
border: 10px;
margin: auto;
display:normal;
}
}


/**
Expand Down
Binary file added assets/music/1kije3/cover.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions assets/sound/.gitignore
@@ -0,0 +1,7 @@
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
# Ignore folders generated by Bundler
.bundle/
vendor/
8 changes: 8 additions & 0 deletions music.json
@@ -0,0 +1,8 @@
---
---
[
{
"title": "1_KIJE^3",
"artist": "1oolm"
}
]
6 changes: 6 additions & 0 deletions music.md
@@ -0,0 +1,6 @@
---
layout: music
title: Music
permalink: /music/
---
alpha.zero releases, past and present:

0 comments on commit 8e1fc2e

Please sign in to comment.