blob: a26b77471e64ef5c1b1206b063b97821708ecb75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
$title = "Et Cetera";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>
It turns out that not everything falls neatly into any of the categories on my home page. This page is for those things.
</p>
<h2>Web Services</h2>
<p>
I host a few different services on this VPS. This site--aberrantflux.xyz--doesn't need much introduction. There's also
<a href=https://files.aberrantflux.xyz>files.aberrantflux.xyz</a>, my file server; and
<a href=https://git.aberrantflux.xyz>git.aberrantflux.xyz</a>, my git server. I'm thinking about adding a web radio for
my music.
</p>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|