main
aprzn 11 months ago
commit 76fab25673

2
.gitignore vendored

@ -0,0 +1,2 @@
deploy.sh
public/

@ -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

@ -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

@ -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)

@ -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

@ -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);
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="/style.css">
<title>i hear theres an aprzn here</title>
</head>
<body>
<div class="block" id="header">
<h1 class="title">hey this zinc isnt interesting at all!</h1>
<a href="/">home</a>
<a href="/music">my music</a>
<a href="/contact">links, et al.</a>
<a href="/why-zinc">why zinc</a>
</div>
<div class="block">
{% block content %} {% endblock %}
</div>
<div class="block" id="footer">
<a href="https://example.org">&lt; prev</a>
|
<a href="https://example.org">webring (i hope)</a>
|
<a href="https://example.org">next &gt;</a>
<br>
<br>
<a href="https://example.org">view source</a>
{#
<br>
{{__tera_context}}
#}
</div>
</body>
</html>

@ -0,0 +1,8 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">hello world</h1>
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)
<div class="toki-pona">sina sona e toki pona la <a href="/contact">o toki tawa mi</a>. mi kepeken toki pona la mi pilin pona a.</div>
<a href="/contact">there are a few different ways to contact me</a>
{% endblock content %}

@ -0,0 +1,6 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">{{ page.title }}</h1>
{{ page.content | safe }}
{% endblock content %}

@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">{{ section.title }}</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}

@ -0,0 +1 @@
<span class="toki-pona">{{ body }}</span>
Loading…
Cancel
Save