small tweaks

This commit is contained in:
Devi 2024-12-11 12:24:17 -05:00
commit c2b08f33de
85 changed files with 474 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# ignore all generated html files
site/.pub/**/*.html
# ignore extra pages
site/.pub/extras/

20
LICENSE.txt Normal file
View File

@ -0,0 +1,20 @@
LICENSE
-------
The HTML and CSS code for the page structure is distributed under the MIT License. See the section below for a copy of the license.
The site's content (i.e. text, images, etc.) is: Copyright © 2024 DeviousTengu, All Rights Reserved.
Aya Shameimaru is a character from Touhou Project created by Team Shanghai Alice.
MIT LICENSE
-----------
Copyright © 2024 DeviousTengu
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

16
README.md Normal file
View File

@ -0,0 +1,16 @@
![Tengu.Space](./site/.pub/img/logo.gif)
This is my server where I host a number of webservices for myself and friends.
## Building
### Prerequesites
[aya](https://suzunaan.chaotic.ninja/aya/)
### Instructions
```
$ git clone https://git.tengu.space/devioustengu/tengu-space
$ cd tengu-space/site
$ aya build
```
Generated HTML files are placed in /.pub.

70
site/.aya/layout.html Normal file
View File

@ -0,0 +1,70 @@
<!DOCTYPE html>
<!--
Copyright (c) 2024 DeviousTengu
This file is distributed under the MIT License.
See LICENSE.txt or https://opensource.org/license/mit
-->
<html lang="en"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="noindex">
<title> {{ title }} - Tengu.Space </title>
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<link rel="stylesheet" type="text/css" href="./css/stylesheet.css">
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="./css/ie.css">
<![endif]-->
</head>
<body><div id="mountain"></div><div id="everything">
<div id="header">
<img id="logo" src="./img/logo.gif" alt="Tengu.Space">
<div id="nav"> <noscript> <p id="noscript-message"> No script? No problem! </p> </noscript> <a href="./index.html">Home</a> | <a href="./about.html">About</a> | <a href="./services.html">Services</a> | <a href="./contact.html">Contact</a> </div>
</div>
<hr>
<div id="stage">
<img src="./img/stages/{{ stage }}.gif" alt="{{ title }}">
<p> {{ subtitle }} </p>
</div>
<hr>
<table id="content">
<tbody>
<tr>
<td id="top-left"></td>
<td id="top-center"></td>
<td id="top-right"></td>
</tr>
<tr>
<td id="mid-left"></td>
<td id="mid-center">
{{ content }}
</td>
<td id="mid-right"></td>
</tr>
<tr>
<td id="bottom-left"></td>
<td id="bottom-center"></td>
<td id="bottom-right"></td>
</tr>
</tbody>
</table>
<hr>
<div id="footer">
<p>
<a href="https://fediring.net/previous?host=tengu.space">&lt;</a>
<a href="https://fediring.net/">Fediring</a>
<a href="https://fediring.net/next?host=tengu.space">&gt;</a> <br>
<a href="gopher://tengu.space/">Gopher Version</a>
</p><br><br>
<p> Copyright &copy; 2024 DeviousTengu. View the source code <a href="https://git.tengu.space/devioustengu/tengu-space">here</a>. <br>
This site was made using <a href="https://suzunaan.chaotic.ninja/aya/">Aya</a>, the fastest static site generator. </p>
</div>
</div><div id="mountain-ie"></div></body></html>

2
site/.aya/upload Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
rsync -acv --rsh="ssh -p 1230" --del $AYA_OUTDIR/ root@tengu.space:/var/www/html/

19
site/.pub/css/ie.css Normal file
View File

@ -0,0 +1,19 @@
/*
* Copyright (c) 2024 DeviousTengu
* This file is distributed under the MIT License.
* See LICENSE.txt or https://opensource.org/license/mit
*/
html {
background-color: #550000;
}
#mountain { display: none; }
#mountain-ie {
background-image: url('../img/mountain-ie.gif');
background-position: bottom center;
background-repeat: repeat-x;
width: 100%;
height: 184px;
}

View File

@ -0,0 +1,166 @@
/*
* Copyright (c) 2024 DeviousTengu
* This file is distributed under the MIT License.
* See LICENSE.txt or https://opensource.org/license/mit
*/
@font-face {
font-family: Unifont;
src: url('../font/UnifontCondensed.ttf') format('truetype');
}
body {
background-attachment: fixed;
background-color: #442244;
background-image: url('../img/background.gif');
background-repeat: repeat-x;
color: white;
font-family: Unifont, serif;
margin: 0;
position: relative;
}
#mountain {
background-attachment: fixed;
background-image: url('../img/mountain.gif');
background-position: center bottom;
background-repeat: repeat-x;
height: 100%;
width: 100%;
position: fixed;
bottom: 0;
}
#everything {
height: 100%;
width: 720px;
margin: 0 auto;
position: relative;
}
hr {
border: none;
visibility: hidden;
}
.yellow { color: yellow; }
h2, th { color: #F04040; }
a { color: cyan; }
.no-cell-padding { border-spacing: 0; }
.no-cell-padding td { padding: 0; }
.cell-padding td { padding: 4px; }
/* NAVIGATION */
#header {
width: 100%;
height: 72px;
position: relative;
}
#logo {
position: absolute;
bottom: 0;
left: 0;
}
#nav {
position: absolute;
bottom: 0;
right: 0;
text-align: right;
}
#noscript-message {
color: magenta;
margin-bottom: 8px;
}
/* STAGE */
#stage { text-align: center; }
#stage p { margin-top: 0; }
/* BORDER */
#content {
table-layout: fixed;
width: 100%;
border-spacing: 0;
border-collapse: collapse;
}
#top-left, #top-center, #top-right, #bottom-left, #bottom-center, #bottom-right {
height: 16px;
padding: 0px;
}
#top-left, #top-right, #mid-left, #mid-right, #bottom-left, #bottom-right {
width: 16px;
padding: 0px;
}
#top-left {
background-image: url('../img/border/top-left.gif');
}
#top-center {
background-image: url('../img/border/top-center.gif');
}
#top-right {
background-image: url('../img/border/top-right.gif');
}
#mid-left {
background-image: url('../img/border/mid-left.gif');
}
#mid-center {
background-image: url('../img/border/mid-center.gif');
padding: 4px;
}
#mid-right {
background-image: url('../img/border/mid-right.gif');
}
#bottom-left {
background-image: url('../img/border/bottom-left.gif');
}
#bottom-center {
background-image: url('../img/border/bottom-center.gif');
}
#bottom-right {
background-image: url('../img/border/bottom-right.gif');
}
/* HOMEPAGE */
#aya-sprite { float: left; }
a img { border: none; }
#buttons { margin-top: 16px; }
#buttons a { text-decoration: none; }
/* FOOTER */
#footer {
padding: 8px 0;
text-align: center;
}
#footer p {
background-image: url('../img/footer.gif');
display: inline;
}

BIN
site/.pub/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

BIN
site/.pub/img/avatar.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 687 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 801 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 649 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 491 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 819 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
site/.pub/img/footer.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 767 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 831 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 415 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 631 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 362 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1003 B

BIN
site/.pub/img/logo.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
site/.pub/img/mountain.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

2
site/.pub/robots.txt Normal file
View File

@ -0,0 +1,2 @@
User-agent: *
Disallow: /

69
site/about.md Normal file
View File

@ -0,0 +1,69 @@
---
title: About Devi
stage: about-devi
subtitle: A Brief Introduction
---
<img src="./img/avatar-christmas.gif" style="float: right; margin-left: 16px;" alt="">
## > Hi, I'm Devi ヾ(^∇^)
I'm a devious tengu stuck in 2009. I dream of living on a mountain and flying above the clouds.
I spend my time developing games, drawing pixel art, and making puns. I'm also learning German.
I'm gender apathetic, so you may refer to me with any pronouns.
## > Interests
<table class="cell-padding"><tbody>
<tr>
<td class="yellow"> Anime </td>
<td>
Kill me Baby, Lucky Star, Serial Experiments Lain, Steins;Gate, Toaru Kagaku no Railgun
</td>
</tr>
<tr>
<td class="yellow"> Games </td>
<td>
Desert Bus, Dragon Quest, Mario Kart, Mega Man, Mother, Pikmin, Poly Bridge, Solitaire, Spelunky, Tetris, Touhou Project (<a href="https://questlog.app/u/Devi">Questlog</a>)
</td>
</tr>
<tr>
<td class="yellow"> Other </td>
<td>
Frutiger Aero, Internet Privacy, Retro Tech Collecting, Speedrunning
</td>
</tr>
</tbody></table>
## > Software
<table class="cell-padding"><tbody>
<tr>
<td class="yellow"> Browsers </td>
<td>
<img src="./img/icons/librewolf.gif" alt=""> <a href="https://librewolf.net/">LibreWolf</a>, <img src="./img/icons/mullvad-browser.gif" alt=""> <a href="https://mullvad.net/en/browser">Mullvad Browser</a>
</td>
</tr><tr>
<td class="yellow"> Communication </td>
<td>
<img src="./img/icons/gajim.gif" alt=""> <a href="https://gajim.org/">Gajim</a>, <img src="./img/icons/nheko.gif" alt=""> <a href="https://nheko-reborn.github.io/">nheko</a>
</td>
</tr><tr>
<td class="yellow"> Development </td>
<td>
<img src="./img/icons/aseprite.gif" alt=""> <a href="https://www.aseprite.org/">Aseprite</a>, <img src="./img/icons/godot.gif" alt=""> <a href="https://godotengine.org/">Godot Engine</a>, <img src="./img/icons/lite-xl.gif" alt=""> <a href="https://lite-xl.com/">Lite XL</a>
</td>
</tr>
<tr>
<td class="yellow"> Linux </td>
<td>
<img src="./img/icons/debian.gif" alt=""> <a href="https://www.debian.org/">Debian</a>, <img src="./img/icons/linux-mint.gif" alt=""> <a href="https://www.linuxmint.com/">Linux Mint</a>
</td>
</tr>
</tbody></table>
## > Enemy List ( •̀ ᴗ •́ )
Bluetooth, Discord, GameMaker Studio 2, NVIDIA, RGB Devices, Super Mario Sunshine, Verizon, Unity Engine, YouTube Shorts

43
site/contact.md Normal file
View File

@ -0,0 +1,43 @@
---
title: Contact
stage: contact
subtitle: Land of Communication
---
## > Direct Message
<table class="cell-padding">
<tr>
<td> <img src="./img/icons/xmpp.gif" alt=""> </td>
<td> XMPP <a href="xmpp:devi@lunanova.dev?message"> devi@lunanova.dev</a> </td>
</tr>
<tr>
<td> <img src="./img/icons/matrix.gif" alt=""> </td>
<td> Matrix <a href="https://matrix.to/#/@devious:snug.moe"> @devious:snug.moe</a> </td>
</tr>
<tr>
<td> <img src="./img/icons/signal.gif" alt=""> </td>
<td> Signal <a href="https://signal.me/#eu/_dzCF7QfEzrFUiuGt714rynr0Ho-CMAJt4HSuHKqbgHTMhcQm85HF7ZTBCCGRb0n"> devi.22 </a> </td>
</tr>
<tr>
<td> <img src="./img/icons/telegram.gif" alt=""> </td>
<td> Telegram <a href="https://t.me/devioustengu"> @devioustengu </a> </td>
</tr>
</table>
<p> You're always welcome to reach out to me. Even if it's just to say hi! </p>
## > Social Media
<table class="cell-padding">
<tr>
<td> <img src="./img/icons/fedi.gif" alt=""> </td>
<td> Public Fediverse <a href="https://fedi.tengu.space/devious/" rel="me">@devious@fedi.tengu.space</a> </td>
</tr>
<tr>
<td> <img src="./img/icons/fedi-alt.gif" alt=""> </td>
<td> Private Fediverse <a href="https://class.lunanova.dev/devi/">@devi@class.lunanova.dev</a> </td>
</tr>
</table>
<p> You won't find me on big tech social media such as Facebook, Instagram, X, etc. </p>

45
site/index.md Normal file
View File

@ -0,0 +1,45 @@
---
title: Welcome
stage: welcome
subtitle: Enjoy Your Stay!
---
<table class="no-cell-padding"><tbody><tr>
<td>
<img src="./img/aya-sprite.gif" id="aya-sprite" alt="">
</td><td>
<p>I'm <a href="./about.html">DeviousTengu</a>! You may call me Devi or Dev.</p>
<p>This is my server where I host a few webservices for myself and friends. Our mascot is the most truthful news reporter in Gensokyo, <a href="https://en.touhouwiki.net/wiki/Aya_Shameimaru">Aya Shameimaru</a>.</p>
</td>
</tr></tbody></table>
<div id="buttons">
<a href="https://tengu.space/"> <img src="./img/buttons/dev.png" alt="Devi"> </a>
<a href="https://benjae.nekoweb.org/"> <img src="./img/buttons/benjae.gif" alt="benjae"> </a>
<a href="https://dd86k.space/"> <img src="./img/buttons/dd86k.png" alt="dd86k"> </a>
<a href="https://disarray.sh/"> <img src="./img/buttons/disarray.png" alt="disarray"> </a>
<a href="https://reimu.info/"> <img src="./img/buttons/ezio.png" alt="Ezio"> </a>
<a href="https://geartoward.jp.net/"> <img src="./img/buttons/gt.png" alt="geartoward"> </a>
<a href="https://nanoshinono.me/"> <img src="./img/buttons/prefetcher.gif" alt="prefetcher"> </a>
<a href="https://nyaa.si/view/1407253"> <img src="./img/buttons/konata.gif" alt="Lucky Star"> </a>
<a href="https://yurifan.club/"> <img src="./img/buttons/jacky.png" alt="jacky"> </a>
<a href="https://knightzone.neocities.org/"> <img src="./img/buttons/knight.png" alt="Knight"> </a>
<a href="https://nc-roadgeek.neocities.org/"> <img src="./img/buttons/kurzov.gif" alt="Kurzov"> </a>
<a href="https://lavenderfield.xyz/"> <img src="./img/buttons/lavender.gif" alt="Lavender Field"> </a>
<a href="https://akko.wtf/"> <img src="./img/buttons/lunanova.png" alt="Luna Nova"> </a>
<a href="https://m0e.space/"> <img src="./img/buttons/m0e.png" alt="m0e.space"> </a>
<a href="https://momijide.su/"> <img src="./img/buttons/momijidesu.gif" alt="Momiji Desu"> </a>
<a href="https://nhal.xyz/"> <img src="./img/buttons/nhal.png" alt="Nhal"> </a>
<a href="https://spaztron64.github.io/th98tuc_site/"> <img src="./img/buttons/pc98.gif" alt="PC98 Touhou"> </a>
<a href="https://pixelde.su/"> <img src="./img/buttons/pixeldesu.png" alt="Pixel"> </a>
<a href="https://interconnected.yakumo.dev/"> <img src="./img/buttons/yukari.gif" alt="Izuru"> </a>
<a href="https://biribiri.dev/"> <img src="./img/buttons/norm.png" alt="Norm"> </a>
<a href="https://urndeogtaaiwpgosq.bitbucket.io/"> <img src="./img/buttons/rqsd.png" alt="rqsd"> </a>
<a href="https://silk.ms/"> <img src="./img/buttons/laru.gif" alt="Laru"> </a>
<a href="https://girlthi.ng/~thermia/"> <img src="./img/buttons/thermia.gif" alt="thermia"> </a>
<a href="https://mima-sama.yakumo.dev/"> <img src="./img/buttons/mima.png" alt="Mima"> </a>
<a href="https://utsuho.rocks/"> <img src="./img/buttons/utsuhorocks.png" alt="Utsuho"> </a>
<a href="http://vocelia.fufufu.moe/"> <img src="./img/buttons/vocelia.gif" alt="Vocelia"> </a>
<a href="https://xn--u80a.com/"> <img src="./img/buttons/yuki.png" alt="Yuki"> </a>
<a href="https://0xc3.win/"> <img src="./img/buttons/silt.gif" alt="silt"> </a>
</div>

17
site/services.md Normal file
View File

@ -0,0 +1,17 @@
---
title: Services
stage: services
subtitle: Magical Internet Tools
---
## <img src="./img/icons/akkoma.gif" alt="" width=32 height=32> [Akkoma](https://fedi.tengu.space)
A single-user fediverse instance. This is where I spread misinformation!
## <img src="./img/icons/forgejo.gif" alt="" width=32 height=32> [Forgejo](https://git.tengu.space)
A lightweight software forge. The source code to this site can be found here.
## <img src="./img/icons/jitsi-meet.gif" alt="" width=32 height=32> [Jitsi Meet](https://meet.tengu.space)
A videoconferencing platform. You can voice chat with me here.
## <img src="./img/icons/owncast.gif" alt="" width=32 height=32> [Owncast](https://live.tengu.space)
A single-user livestreaming service. I use this to broadcast cozy games.