nodejs-website/pages/health.php
Chad 90d85db7d3
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.
2024-03-06 18:56:41 -07:00

59 lines
1.3 KiB
PHP
Executable File

#!/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";
?>