Of course it's static files

Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
This commit is contained in:
Izuru Yakumo (八雲 イズル) 2024-09-14 10:43:47 -03:00
commit 7731eea1b6
5 changed files with 77 additions and 0 deletions

20
.aya/layout.html Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE HTML PUBLIC "//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" href="/static/yuki.css">
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="description" content="The Yakumo Laboratories User Network">
<meta name="generator" content="aya {{ aya version }}">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>{{ title }} &mdash; Yakumo Laboratories' User Network</title>
</head>
<body>
<table border="1" align="center">
<tr>
<td>
{{ content }}
</td>
</tr>
</table>
</body>
</html>

2
.aya/upload Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
rsync -acv --del $AYA_OUTDIR/ www@chaotic.ninja:/var/www/news

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.pub

36
index.md Normal file
View File

@ -0,0 +1,36 @@
---
title: Home
---
```
,---- [ Yakumo Laboratories ]
| __ __ _ _ __ __ __
| / / / /_______ _________( ) / | / /__ / /__ ______ _____/ /__
| / / / / ___/ _ \/ ___/ ___// / |/ / _ \/ __/ | /| / / __ \/ ___/ //_/
| / /_/ (__ ) __/ / (__ ) / /| / __/ /_ | |/ |/ / /_/ / / / ,<
| \____/____/\___/_/ /____/ /_/ |_/\___/\__/ |__/|__/\____/_/ /_/|_|
|
`---- [ Powered by NetBSD ]
```
Welcome to Yakumo Laboratories Users' Network, powered by [NetBSD](https://www.netbsd.org/) and [InterNetNews](https://www.eyrie.org/~eagle/software/inn/)
## Addresses
* [news.chaotic.ninja](/) port(s) 119 (cleartext), 563 (TLS).
* Anonymous login (read-only) is `anon:anon`
* For read-write access, the application procedure is the same for all invite-only services.
* Alternatively, send an e-mail to [Nishi](https://nishi.boats) with your desired username and password
## Newsgroups
| Name | Description |
|------------------------|---------------------------|
| alt.binaries.datasheet | Datasheet |
| alt.binaries.iso | ISO disk images |
| alt.binaries.touhou | Also known as "tohowarez" |
| alt.game.touhou | Touhou Project |
| alt.moriya.general | Moriya Shrine |
| comp.kernel.linux | Complaints about Linux |
| comp.lang.c | C programming language |
| comp.os.freebsd | FreeBSD |
| comp.os.netbsd | NetBSD |
| comp.os.openbsd | OpenBSD |

18
static/yuki.css Normal file
View File

@ -0,0 +1,18 @@
/* Yuki */
body {
background-color: #000000;
color: #ffeecc;
font-family: sans-serif;
}
a {
color: #ffdddd;
}
a:hover, a:visited {
color: #aaaa44;
}
code, pre {
color: #880000;
}
hr {
color: #eeaabb;
}