nodejs-website/pages/health.php
Chad 0a7d1c1f90
Add Book Announcement + Profession Section (#21)
* 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
2024-03-23 18:57:58 -07:00

80 lines
1.8 KiB
PHP
Executable File

#!/usr/bin/php
<!--
Page to provide ways people can support me.
-->
<?php
$GLOBALS["ADVISORY"] = false;
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 12-page PDF:
</p>
<ul class="indent"><li>
<a href="/files/media/documents/HyperlingsHealthProtocol.pdf">
[PDF] | Direct Download
</a>
</li></ul>
<p>
There is also a 30 minute audio version which can be found here:
</p>
<ul class="indent">
<li>
<a href="/files/media/documents/HyperlingsHealthProtocol.mp3"
target="_blank" rel="noopener noreferrer"
>
[MP3] | Direct Download
</a>
</li>
<li>
<a href="https://odysee.com/@HyperVegan:2/20240307_MyHealthProtocolAudio:1"
target="_blank" rel="noopener noreferrer"
>
[MP3] | Odysee
</a>
</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"
>
[CODE] | GitHub
</a>
</li></ul>
<p>
Related URLs:
</p>
<ul class="indent">
<li>
<a href="https://odysee.com/@HyperVegan:2/20240306_MyHealthProtocol-Book:9"
target="_blank" rel="noopener noreferrer"
>
Book Release Announcement | Odysee
</a>
</li>
<li>
<a href="https://www.drmcdougall.com/education/information/cpb/"
target="_blank" rel="noopener noreferrer"
>
Dr. McDougall's Color Picture Book | DrMcDougall.com
</a>
</li>
</ul>
</div>
</div>
<?php
include "helpers/body_close.php";
?>