commit 76fab25673cb93a732ba2796092fb40e8e121abb Author: aprzn Date: Mon Jul 3 12:40:09 2023 -0400 initial diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dceccf0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +deploy.sh +public/ diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..7ecaf4d --- /dev/null +++ b/config.toml @@ -0,0 +1,16 @@ +# The URL the site will be built for +base_url = "https://interestingzinc.xyz" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = true + +# Whether to build a search index to be used later on by a JavaScript library +build_search_index = false + +[markdown] +# Whether to do syntax highlighting +# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola +highlight_code = true + +[extra] +# Put all your custom variables here diff --git a/content/contact.md b/content/contact.md new file mode 100644 index 0000000..b0341ae --- /dev/null +++ b/content/contact.md @@ -0,0 +1,10 @@ ++++ +title = "my stuff elsewhere" ++++ + +{% toki() %}sina wile toki tawa mi la o kepeken e ilo ni.{% end %} +- [fediverse](https://fedi.interestingzinc.xyz/aprzn) +- [github](https://github.com/aprzn123) +- matrix/discord: ask & you shall receive +- [you've never heard of this website before](https://twocansandstring.com/users/aprzn123) +- there's probably more tbh but this is most of it diff --git a/content/music.md b/content/music.md new file mode 100644 index 0000000..141eda9 --- /dev/null +++ b/content/music.md @@ -0,0 +1,24 @@ ++++ +title = "i make music sometimes" ++++ + +indeed i do! + +### sometimes i make it for games +- [Lightspeed Stampede](https://soup-stock-games.itch.io/lightspeed-stampede) +- [Quest for the Shrink Ray](https://aprzn123.itch.io/quest-for-the-shrink-ray) +- [Crowd Management](https://aprzn123.itch.io/crowd-management) +- [Keep](https://aprzn123.itch.io/keep) +- [The Passage](https://aprzn123.itch.io/the-passage) +- [Capy-VIRUS](https://freeglebarr.itch.io/capy-virus) + + +### sometimes i make it for its own sake +- [Piecewise](/music/Piecewise.mp3) +- [Mission Failure](/music/MissionFailure.mp3) +- [Space Titanic](/music/SpaceTitanic.mp3) +- [Future](/music/Future.mp3) +- [#](/music/hash.ogg) + +### sometimes it is a collaboration +- [E♭ B♭ A G](/music/EflatBflatAG.mp3) with various people [over here](https://twocansandstring.com/forum/musicandmovies/11213) diff --git a/content/why-zinc.md b/content/why-zinc.md new file mode 100644 index 0000000..28cac48 --- /dev/null +++ b/content/why-zinc.md @@ -0,0 +1,5 @@ ++++ +title = "its like the worst possible faux-etymology of my username" ++++ + +aprzn <- apr + zn <- interest rate + zinc <- interesting zinc. this is not where my username came from. it does not mean anything. but i love this domain and you can pry it out of my cold dead hands diff --git a/sass/style.scss b/sass/style.scss new file mode 100644 index 0000000..656622b --- /dev/null +++ b/sass/style.scss @@ -0,0 +1,88 @@ +$fave: #aa71fa; +$off-dark: #1b181e; +$body-bg: #d5bbf9; + +$link: #551a8b; +$link-hover: #32594f; + +$header-link-bg: #2a2333; + +body { + background-color: $off-dark; + font-family: lato; +} + +.block { + background-color: $body-bg; + width: 60%; + margin: auto; + border-radius: 1em; + color: $off-dark; + padding-left: 3em; + padding-right: 3em; + padding-top: 1em; + padding-bottom: 1em; + margin-top: 1em; +} + +#footer { + text-align: center; +} + +#header { + text-align: center; + & > a { + border-radius: 1em; + background-color: $header-link-bg; + padding-top: 0.3em; + padding-bottom: 0.3em; + padding-left: 0.4em; + padding-right: 0.4em; + color: $fave; + text-decoration: none; + font-weight: bold; + animation: none; + &:hover { + color: $link-hover; + } + } +} + +.title { + margin-top: 0em; +} + +.toki-pona { + font-family: lipamanka; +} + +a { + color: $link; + &:hover { + color: $link-hover; + animation: 0.3s link-hover; + } + &:active { + color: $fave; + } +} + +@keyframes link-hover { + from { + color: $link; + } + + to { + color: $link-hover; + } +} + +@font-face { + font-family: lipamanka; + src: url(/linjamanka.woff); +} + +@font-face { + font-family: lato; + src: url(/lato.woff2); +} diff --git a/static/lato.woff2 b/static/lato.woff2 new file mode 100644 index 0000000..a4d084b Binary files /dev/null and b/static/lato.woff2 differ diff --git a/static/linjamanka.woff b/static/linjamanka.woff new file mode 100644 index 0000000..e70a94f Binary files /dev/null and b/static/linjamanka.woff differ diff --git a/static/music/EflatBflatAG.mp3 b/static/music/EflatBflatAG.mp3 new file mode 100644 index 0000000..1bc0858 Binary files /dev/null and b/static/music/EflatBflatAG.mp3 differ diff --git a/static/music/Future.mp3 b/static/music/Future.mp3 new file mode 100644 index 0000000..4bff3aa Binary files /dev/null and b/static/music/Future.mp3 differ diff --git a/static/music/MissionFailure.mp3 b/static/music/MissionFailure.mp3 new file mode 100644 index 0000000..5238d2f Binary files /dev/null and b/static/music/MissionFailure.mp3 differ diff --git a/static/music/Piecewise.mp3 b/static/music/Piecewise.mp3 new file mode 100644 index 0000000..60112a5 Binary files /dev/null and b/static/music/Piecewise.mp3 differ diff --git a/static/music/SpaceTitanic.mp3 b/static/music/SpaceTitanic.mp3 new file mode 100644 index 0000000..1aae852 Binary files /dev/null and b/static/music/SpaceTitanic.mp3 differ diff --git a/static/music/hash.ogg b/static/music/hash.ogg new file mode 100644 index 0000000..ef3a825 Binary files /dev/null and b/static/music/hash.ogg differ diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..d52bc6e --- /dev/null +++ b/templates/base.html @@ -0,0 +1,34 @@ + + + + + + i hear theres an aprzn here + + + +
+ {% block content %} {% endblock %} +
+ + + diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..1820d76 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} + +{% block content %} +

hello world

+i'm aprzn and this is my website. i dont have much stuff here for now but more will appear over time (i would imagine) +
sina sona e toki pona la o toki tawa mi. mi kepeken toki pona la mi pilin pona a.
+there are a few different ways to contact me +{% endblock content %} diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..abaf74e --- /dev/null +++ b/templates/page.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} + +{% block content %} +

{{ page.title }}

+{{ page.content | safe }} +{% endblock content %} diff --git a/templates/section.html b/templates/section.html new file mode 100644 index 0000000..d0ed3e4 --- /dev/null +++ b/templates/section.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% block content %} +

{{ section.title }}

+ +{% endblock %} diff --git a/templates/shortcodes/toki.html b/templates/shortcodes/toki.html new file mode 100644 index 0000000..9f78605 --- /dev/null +++ b/templates/shortcodes/toki.html @@ -0,0 +1 @@ +{{ body }}