diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json index 1916ef4..39d1001 100644 --- a/.vs/VSWorkspaceState.json +++ b/.vs/VSWorkspaceState.json @@ -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 } \ 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 28f8f2d..400c8c1 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 e6f101d..59dea52 100644 Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ diff --git a/_data/music.yml b/_data/music.yml new file mode 100644 index 0000000..16edb98 --- /dev/null +++ b/_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 \ No newline at end of file diff --git a/_data/musictypeinfo.yml b/_data/musictypeinfo.yml new file mode 100644 index 0000000..ac3fbd1 --- /dev/null +++ b/_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" \ No newline at end of file diff --git a/_layouts/music.html b/_layouts/music.html new file mode 100644 index 0000000..3a3a13a --- /dev/null +++ b/_layouts/music.html @@ -0,0 +1,25 @@ +--- +layout: default +--- +
+
+

{{ page.title | escape }}

+
+

+
+
+ {{ content }} +
+
+ {%- for release in site.data.music -%} + {% assign releasetype = release.type %} +
+ +

{{ release.title }} ({{ release.year }})

+

{{ release.type }} by {{ release.artist }} | {{ release.genres }} | {{ release.length }}

+
+ {% unless forloop.last %}
{% endunless %} + {%- endfor -%} +
+
+
\ No newline at end of file diff --git a/_plugins/rendertime.rb b/_plugins/rendertime.rb deleted file mode 100644 index 298a550..0000000 --- a/_plugins/rendertime.rb +++ /dev/null @@ -1,15 +0,0 @@ -module Jekyll - class RenderTimeTag < Liquid::Tag - - def initialize(tag_name, text, tokens) - super - @text = text - end - - def render(context) - "#{@text} #{Time.now}" - end - end -end - -Liquid::Template.register_tag('render_time', Jekyll::RenderTimeTag) \ No newline at end of file diff --git a/_sass/minima/_layout.scss b/_sass/minima/_layout.scss index 1665bdc..ebe1f87 100644 --- a/_sass/minima/_layout.scss +++ b/_sass/minima/_layout.scss @@ -37,7 +37,7 @@ textarea { .search { text-align: center; - width: 69%; + width: 60%; float: left; position: relative; align-content:center; @@ -126,6 +126,13 @@ ul { } } +.release-list { + .release { + border: 10px; + margin: auto; + display:normal; + } +} /** diff --git a/assets/music/1kije3/cover.jpg b/assets/music/1kije3/cover.jpg new file mode 100644 index 0000000..8772c79 Binary files /dev/null and b/assets/music/1kije3/cover.jpg differ diff --git a/assets/sound/.gitignore b/assets/sound/.gitignore new file mode 100644 index 0000000..74a9223 --- /dev/null +++ b/assets/sound/.gitignore @@ -0,0 +1,7 @@ +_site/ +.sass-cache/ +.jekyll-cache/ +.jekyll-metadata +# Ignore folders generated by Bundler +.bundle/ +vendor/ diff --git a/music.json b/music.json new file mode 100644 index 0000000..b59ad6d --- /dev/null +++ b/music.json @@ -0,0 +1,8 @@ +--- +--- +[ + { + "title": "1_KIJE^3", + "artist": "1oolm" + } +] diff --git a/music.md b/music.md new file mode 100644 index 0000000..e89aec2 --- /dev/null +++ b/music.md @@ -0,0 +1,6 @@ +--- +layout: music +title: Music +permalink: /music/ +--- +alpha.zero releases, past and present: \ No newline at end of file