Files
nodejs-website/pages/media.php

121 lines
2.9 KiB
PHP
Executable File

#!/usr/bin/php
<?php
/* Page for my video links. */
if (!isset($GLOBALS["HEADER_TITLE"])) {
$GLOBALS["HEADER_TITLE"] = "Media";
}
include "helpers/body_open.php";
?>
<div class="row">
<h1 class="col-12 title">Media</h1>
<!--<?php if (isset($GLOBALS["SHOW_BANNER_PICS"])
&& !$GLOBALS["SHOW_BANNER_PICS"])
echo '
<div class="col-12 header center" >
<img src="/files/media/icons/videos.jpg" alt="<<videos.jpg>>">
</div>
';?>-->
</div>
<div class="row">
<div class="col-12 header center">
<p>
My written works, social platforms, and photos can be found here.
</p>
</div>
</div>
<div class="row">
<h2 class="col-12 header">Books</h2>
</div>
<div class="row">
<div class="col-12 text">
<p>
I enjoy writing! Find my free eBooks below.
</p>
<ul class="indent">
<li>
2025-09-28: <a href="/freedom/">Voluntary Sovereignty</a> |
Existing in a statist society with the least amount of friction.
</li>
<li><p><!-- Small Gap --></p></li>
<li>
2024-03-07: <a href="/health/">Hyperling's Health Protocol</a> |
Health is a lifestyle, not a diet. Align yourself with Nature
to receive its blessings.
</li>
</ul>
</div>
</div>
<div class="row" id="donate">
<h2 class="col-12 header">Videos</h2>
</div>
<div class="row">
<div class="col-12 text">
<p>
For the best viewing experience, please go directly to my channel here:
</p>
<ul class="indent"><li>
<a href="https://odysee.com/@HyperVegan:2"
target="_blank" rel="noopener noreferrer"
>
Odysee | HyperVegan
</a>
</li></ul>
<p> I also have a separate channel for reposting content, found here:</p>
<ul class="indent"><li>
<a href="https://odysee.com/@HyperVegan-Reposts:5"
target="_blank" rel="noopener noreferrer"
>
Odysee | HyperVegan Reposts
</a>
</li></ul>
<!-- 2025-01-01 Looks like Cahlen took it down.
<p>There is also a backup of my content on Modern Day Wizards:</p>
<ul class="indent"><li>
<a href="https://moderndaywizards.org/c/hypervegan"
target="_blank" rel="noopener noreferrer"
>
Modern Day Wizards | HyperVegan
</a>
</li></ul>
-->
</div>
</div>
<!-- WIP
<div class="row">
<h1 class="col-12 title">Art / Poetry</h1>
</div>
<div class="row">
<div class="col-12 text">
<p>
TBD
</p>
<ul class="indent"><li>
<a href="/art/">TBD</a>
</li></ul>
</div>
</div>
-->
<div class="row">
<h2 class="col-12 header">Photography</h2>
</div>
<div class="row">
<div class="col-12 text">
<p>
I don't have social media, so where do my photos and videos go?
Try right here!
</p>
<ul class="indent"><li>
<a href="/photos/">My Photos</a>
</li></ul>
</div>
</div>
<?php
include "helpers/body_close.php";
?>