Add Health Page (#19)
* Change Videos page to Media. * Add page for My Health Ptorocol. * Add placeholder with basic layout for future lists page. * Little more work on the book links. * Be consistent with sentences. * Add a link to the GitHub project. * Change filename, add TBD's. * Add a note about the new eBook.
This commit is contained in:
parent
5874bcc361
commit
90d85db7d3
58
pages/health.php
Executable file
58
pages/health.php
Executable file
@ -0,0 +1,58 @@
|
|||||||
|
#!/usr/bin/php
|
||||||
|
<!--
|
||||||
|
Page to provide ways people can support me.
|
||||||
|
-->
|
||||||
|
<?php
|
||||||
|
include "helpers/body_open.php";
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<h1 class="col-12 title">My Health Protocol</h1>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 text">
|
||||||
|
<p>
|
||||||
|
Please click the link below to download the PDF:
|
||||||
|
</p>
|
||||||
|
<ul class="indent"><li>
|
||||||
|
<a href="/files/media/documents/HyperlingsHealthProtocol.pdf">
|
||||||
|
Hyperling's Health Protocol [PDF]
|
||||||
|
</a>
|
||||||
|
</li></ul>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
There is also an audio companion which can be found here:
|
||||||
|
</p>
|
||||||
|
<ul class="indent"><li>
|
||||||
|
TBD:
|
||||||
|
<s><a href=""
|
||||||
|
target="_blank" rel="noopener noreferrer"
|
||||||
|
>
|
||||||
|
Hyperling's Health Protocol [AUDIO] | Odysee
|
||||||
|
</a></s>
|
||||||
|
</li></ul>
|
||||||
|
<ul class="indent"><li>
|
||||||
|
TBD:
|
||||||
|
<s><a href=""
|
||||||
|
target="_blank" rel="noopener noreferrer"
|
||||||
|
>
|
||||||
|
Hyperling's Health Protocol [AUDIO] | Modern Day Wizards
|
||||||
|
</a></s>
|
||||||
|
</li></ul>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Curious how I made it? Check out its GitHub project:
|
||||||
|
</p>
|
||||||
|
<ul class="indent"><li>
|
||||||
|
<a href="https://github.com/Hyperling/HealthProtocol"
|
||||||
|
target="_blank" rel="noopener noreferrer"
|
||||||
|
>
|
||||||
|
Hyperling's Health Protocol [CODE] | GitHub
|
||||||
|
</a>
|
||||||
|
</li></ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
include "helpers/body_close.php";
|
||||||
|
?>
|
@ -3,7 +3,7 @@
|
|||||||
<ul class="menu-list">
|
<ul class="menu-list">
|
||||||
<li class="col-1"></li>
|
<li class="col-1"></li>
|
||||||
<li class="col-2 menu-item"><a href="/home/">Home</a></li>
|
<li class="col-2 menu-item"><a href="/home/">Home</a></li>
|
||||||
<li class="col-2 menu-item"><a href="/videos/">Videos</a></li>
|
<li class="col-2 menu-item"><a href="/media/">Media</a></li>
|
||||||
<li class="col-2 menu-item"><a href="/about/">About</a></li>
|
<li class="col-2 menu-item"><a href="/about/">About</a></li>
|
||||||
<li class="col-2 menu-item"><a href="/contact/">Contact</a></li>
|
<li class="col-2 menu-item"><a href="/contact/">Contact</a></li>
|
||||||
<li class="col-2 menu-item"><a href="/support/">Support</a></li>
|
<li class="col-2 menu-item"><a href="/support/">Support</a></li>
|
||||||
|
37
pages/lists.php
Executable file
37
pages/lists.php
Executable file
@ -0,0 +1,37 @@
|
|||||||
|
#!/usr/bin/php
|
||||||
|
<!--
|
||||||
|
Page to provide ways people can support me.
|
||||||
|
-->
|
||||||
|
<?php
|
||||||
|
include "helpers/body_open.php";
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<h1 class="col-12 title">Lists</h1>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<h3 class="col-6 header">Gear</h3>
|
||||||
|
|
||||||
|
<h3 class="col-6 header">Apps</h3>
|
||||||
|
|
||||||
|
<!-- Gear -->
|
||||||
|
<div class="col-6 text">
|
||||||
|
<p>
|
||||||
|
Gear that I find critical to my life.
|
||||||
|
</p>
|
||||||
|
<ul class="indent">
|
||||||
|
<li><a href="TBD">Sleeping Bag</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Apps -->
|
||||||
|
<div class="col-6 text">
|
||||||
|
<p>
|
||||||
|
Apps that I use frequently on a degoogled Android phone.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
include "helpers/body_close.php";
|
||||||
|
?>
|
79
pages/media.php
Executable file
79
pages/media.php
Executable file
@ -0,0 +1,79 @@
|
|||||||
|
#!/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>
|
||||||
|
|
||||||
|
<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";
|
||||||
|
?>
|
@ -4,6 +4,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 text">
|
<div class="col-12 text">
|
||||||
|
<p>
|
||||||
|
I've written an eBook with the same title! Find it
|
||||||
|
<a href="/health/">here</a>.
|
||||||
|
</p>
|
||||||
<p>
|
<p>
|
||||||
I have not been sick since I cleaned up my lifestyle in 2014. No colds,
|
I have not been sick since I cleaned up my lifestyle in 2014. No colds,
|
||||||
flus, fevers, etc. My suggestions for accomplishing this are simple.
|
flus, fevers, etc. My suggestions for accomplishing this are simple.
|
||||||
|
@ -1,65 +1,8 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
<!--
|
||||||
Page for my video links.
|
Old page for my video links.
|
||||||
|
Deprecated 2024-03-06 for /media.
|
||||||
-->
|
-->
|
||||||
<?php
|
<?php
|
||||||
include "helpers/body_open.php";
|
include "media.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">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";
|
|
||||||
?>
|
?>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user