Add an about page

This commit is contained in:
Salt 2021-01-19 20:46:05 -06:00
parent b8b303a322
commit a7edbe5e5c
2 changed files with 25 additions and 0 deletions

24
about/index.php Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
<title>About - Desu, Ltd.</title>
</head>
<body>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
<div class="content">
<div class="section">
<h1>About desu.ltd</h1>
<p>desu.ltd is free and open-source software (to the degree that these documents can be considered software). It hosts its own source under a git repo at <a href="https://git.desu.ltd/salt/desultd">git.desu.ltd/salt/desultd</a>.</p>
<p>While the repo may say different, if you're reading this text, you can use any content within this site that I hold rights to under the terms of the Creative Commons CC0 license. I really don't give a shit.</p>
<h1>Contact Information</h1>
<p>You can contact me using the email address I use for my commits. You can also get ahold of me over these applications:
<ul>
<li>Matrix: <code>@salt:9iron.club</code></li>
<li>Fedi: <code>@salt@cowfee.moe</code></li>
</ul>
</div>
</div>
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
</body>
</html>

View File

@ -10,6 +10,7 @@
<ul>
<li><a href="/">index</a></li>
<li><a href="/ascii">ascii</a></li>
<li><a href="/about">about</a></li>
</ul>
</nav>
</div>