summaryrefslogtreecommitdiffstats
path: root/template.html
diff options
context:
space:
mode:
Diffstat (limited to 'template.html')
-rwxr-xr-xtemplate.html49
1 files changed, 37 insertions, 12 deletions
diff --git a/template.html b/template.html
index 1bf6217..6e05cbc 100755
--- a/template.html
+++ b/template.html
@@ -139,7 +139,7 @@ $endif$
}
}
/* AI blurb */
- h1 + p::after {
+ .article h1 + p::after {
content: "All prose on this website is written by a human.";
display: block;
margin-top: 1em;
@@ -156,7 +156,7 @@ $if(math)$
$math$
$endif$
</head>
-<body>
+<body class="$if(top)$article$else$home$endif$">
$for(include-before)$
$include-before$
$endfor$
@@ -180,19 +180,44 @@ $if(title)$
$endif$
</header>
$endif$
-$if(toc)$
+$if(top)$
+$body$
+ <p><a href="/">back to main page</a></p>
+$else$
<h1>articles</h1>
<nav id="$idprefix$TOC" role="doc-toc">
- $if(toc-title)$
- <h2 id="$idprefix$toc-title">$toc-title$</h2>
- $endif$
- $table-of-contents$
+ $article-list$
</nav>
-$endif$
-$body$
-$if(toc)$
-$else$
- <p><a href="/">back to main page</a></p>
+ <h1>about</h1>
+ <p>
+ hello, my name is yum. i am a virtual person interested in realtime
+ graphics and math. this website is a collection of my stray thoughts that i
+ feel ought to be written down. i think of it as something slightly more
+ public than a diary.
+ </p>
+ <p>
+ all prose on this website is written by a human (me). i do use ai when
+ developing software. i don't disclose it. unless you see something in the
+ README saying that i *didn't* use AI, assume i did. the skilled reader should
+ be able to quickly assess quality regardless of how the code is made.
+ </p>
+ <p>
+ my open source code is hosted at
+ <a href="https://git.yummers.dev">git.yummers.dev</a>. it may be slow to load
+ (10-20 seconds). i doubt much of it will be of use to others, besides
+ HLSL_OKLAB and maybe modular_slang.
+ </p>
+ <p>
+ core beliefs:
+ <ol>
+ <li>information should be free;</li>
+ <li>human-caused climate change is real, significant, and solvable;</li>
+ <li>passive acceptance of cruelty is complicity;</li>
+ <li>trans rights are human rights;</li>
+ <li>the web is a vast sea made of individuals with feelings;</li>
+ <li>your actions matter.</li>
+ </ol>
+ </p>
$endif$
$for(include-after)$
$include-after$