Chad
0a7d1c1f90
* Add descriptors of how long the media are. * Add a link for the local mp3, change AUDIO tags to MP3, explicitly call things Direct Download. * Add a banner for my eBook. * Add a "help wanted?" type message on the bottom of the site. * Remove doubled nature-based. * Change some verbiage and reduce the repetitive wording. Do not show the advisory on this page for now. * Add a TBD section for future creative works. * Read a global variable for which pages should show the advisory. * Slight rewording and also adjusting text to ruler. * Increase anchor size. * Don't include exclamation in anchor * Add a section on my experience. * Fix to ruler. * Change menu item for home page to Apps. * Fix typo and shorten verbiage. * Add note for when Art is added to Media. :D
96 lines
2.1 KiB
PHP
Executable File
96 lines
2.1 KiB
PHP
Executable File
#!/usr/bin/php
|
|
<!--
|
|
Page for my video links.
|
|
-->
|
|
<?php
|
|
include "helpers/body_open.php";
|
|
?>
|
|
|
|
<div class="row">
|
|
<h1 class="col-12 title">Videos</h1>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12 header center" >
|
|
<img src="/files/media/icons/videos.jpg">
|
|
</div>
|
|
</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>
|
|
<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>
|
|
|
|
<div class="row">
|
|
<h1 class="col-12 title">Books</h1>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12 text">
|
|
<p>
|
|
I enjoy writing! Find my free eBooks below.
|
|
</p>
|
|
<ul class="indent"><li>
|
|
<a href="/health/">My Health Protocol</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">
|
|
<h1 class="col-12 title">Personal Media</h1>
|
|
</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";
|
|
?>
|