Getting much closer! Still need to finalize About and write Journey.

This commit is contained in:
2022-10-16 09:22:44 -05:00
parent ce20fa0f6f
commit 239aa26b49
20 changed files with 394 additions and 188 deletions

34
pages/contact.php Executable file
View File

@ -0,0 +1,34 @@
#!/usr/bin/php
<?php
include "helpers/body_open.php";
?>
<div class="row">
<h2 class="col-12 title">Contact Me</h2>
</div>
<div class="row">
<div class="col-12 text">
<p>
Public inquries can be made on my Odysee channel's discussion board.
</p>
<ul class="indent"><li>
<a href="https://odysee.com/@HyperVegan:2?view=discussion"
target="_blank" rel="noopener noreferrer"
>
https://odysee.com/@HyperVegan:2?view=discussion
</a>
</li></ul>
<p>
For private matters, my email address may be used, but there is no
guarantee of timely response. If I do not know of you then please be
sure to form the email in a way that does not look like spam.
</p>
<ul class="indent"><li>
<a href="mailto:me@hyperling.com">me@hyperling.com</a>
</li></ul>
</div>
</div>
<?php
include "helpers/body_close.php";
?>