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
This commit is contained in:
Hyperling 2024-03-23 18:57:58 -07:00 committed by GitHub
parent 09e8c47996
commit 0a7d1c1f90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 136 additions and 62 deletions

View File

@ -25,6 +25,7 @@
planted at least one fruit tree or had a small square foot
garden. We would be in paradise!
</p>
<!-- TBD change this to 'Coding, videos, and art' :) -->
<p>
Coding and videos aren't my only hobbies, I'm also big into
health. I see it as humanity's most important asset and take a
@ -35,8 +36,8 @@
information on that.
</p>
<p>
I'm also an avid gardener, focusing on the principles of
nature-based permaculture in order to grow fruits and vegetables.
I'm also an avid gardener, focusing on the principles of native
plants and permaculture in order to grow fruits and vegetables.
Food forestry is one of my favorites! I have many other outdoor
interests too such as hiking, camping, backpacking, foraging, and
traveling.

View File

@ -3,6 +3,7 @@
Page to provide ways people can support me.
-->
<?php
$GLOBALS["ADVISORY"] = false;
include "helpers/body_open.php";
?>
@ -12,24 +13,33 @@
<div class="row">
<div class="col-12 text">
<p>
Please click the following link to download the PDF:
Please click the link below to download the 12-page PDF:
</p>
<ul class="indent"><li>
<a href="/files/media/documents/HyperlingsHealthProtocol.pdf">
Hyperling's Health Protocol [PDF]
[PDF] | Direct Download
</a>
</li></ul>
<p>
There is also an audio version which can be found here:
There is also a 30 minute audio version which can be found here:
</p>
<ul class="indent"><li>
<a href="https://odysee.com/@HyperVegan:2/20240307_MyHealthProtocolAudio:1"
target="_blank" rel="noopener noreferrer"
>
Hyperling's Health Protocol [AUDIO] | Odysee
</a>
</li></ul>
<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:
@ -38,27 +48,29 @@
<a href="https://github.com/Hyperling/HealthProtocol"
target="_blank" rel="noopener noreferrer"
>
Hyperling's Health Protocol [CODE] | GitHub
[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></ul>
<ul class="indent"><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>
<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>

View File

@ -1,4 +1,15 @@
#!/usr/bin/php
<div class="row" id="advisory">
<!-- No advisories at this moment. -->
</div>
<div class="row">
<p><!-- Gap Area --></p>
</div>
<div class="row center" id="advisory">
<div class="col-12 title">
<h2><i>Announcements</i></h2>
</div>
<div class="col-12 text">
<a href="/health/">
Find my free new eBook "Hyperling's Health Protocol" here!
</a>
</div>
</div>

View File

@ -8,5 +8,6 @@
<?php
include "banner.php";
include "menu.php";
include "advisory.php";
if ($GLOBALS["ADVISORY"] !== false)
include "advisory.php";
?>

View File

@ -2,10 +2,20 @@
<?php
include "menu.php"
?>
<div class="row">
<p><!-- Gap Area --></p>
</div>
<div class="row" id="footer">
<div class="col-12 text center">
Have a Health or Freedom related project which could use my help?
<a href="mailto:me@hyperling.com">Please let me know</a>!
</div>
</div>
<div class="row">
<div class="col-3"></div>
<h6 class="col-3 center">
<a href="https://github.com/Hyperling/www/blob/main/LICENSE"
<a href="https://github.com/Hyperling/www/blob/main/LICENSE"
target="_blank" rel="noopener noreferrer"
>This website is free software! Click here to learn more.</a>
</h6>

View File

@ -2,7 +2,7 @@
<div class="row header">
<ul class="menu-list">
<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/">Apps</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="/contact/">Contact</a></li>

View File

@ -6,23 +6,23 @@
include "helpers/body_open.php";
?>
<div class="row">
<h1 class="col-12 title">Welcome!</h1>
<div class="row">
<h1 class="col-12 title">Welcome!</h1>
</div>
<div class="row">
<div class="col-12 header center" >
<img src="/files/media/icons/home.jpg">
</div>
<div class="row">
<div class="col-12 header center" >
<img src="/files/media/icons/home.jpg">
</div>
</div>
<div class="row">
<div class="col-12 text">
<p>
Thank you for visiting my site! My goal is to make the world a
better place. Hopefully you find content here which helps
empower you to do the same!
</p>
</div>
</div>
<div class="row">
<div class="col-12 text">
<p>
Thank you for visiting my site! My goal is to make the world a
better place. Hopefully you find content here which helps empower
you to do the same!
</p>
</div>
</div>
<?php
include "subpages/home/apps.php";

View File

@ -59,6 +59,22 @@
</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>

View File

@ -5,22 +5,23 @@
<div class="row">
<div class="col-12 text">
<p>
I've written an eBook with the same title! Find it
<a href="/health/">here</a>.
I've written an eBook with the same title!
<a href="/health/">Find it here</a>.
</p>
<p>
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.
Consistently:
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. Consistently:
<ul class="indent">
<li>eat enough clean food,</li>
<li>drink enough clean water,</li>
<li>get enough good sleep, and</li>
<li>enjoy a low-stress life.</li>
</ul>
Unfortunately our society today has many different views on how to
do these things, most of which I would say do not work. A full list of
my protocol without getting too into the weeds can be found here:
Unfortunately our society today has many different views on how
to do these things, most of which I would say do not work. A
quick list of my protocol without getting too into the weeds can
be found here:
</p>
<!-- URL/image/something to MyPriorities.pdf on files.hyperling.com -->
<a href="/files/media/documents/HealthPriorities.pdf" target="_blank">
@ -37,10 +38,11 @@
<a href="https://www.dresselstyn.com/"
target="_blank" rel="noopener noreferrer"
>Dr Caldwell Esselstyn</a>.
All of them have plenty of free videos and resources online, there is
no need to buy their books unless you want to support them. They have
been reversing sickness for decades and their plans follow a similar
whole food carb-based lifestyle such as my own, with NO OIL!
All of them have plenty of free videos and resources online,
there is no need to buy their books unless you want to support
them. They have been reversing sickness for decades and their
plans follow a similar whole food carb-based lifestyle such as
my own, with NO OIL!
</p>
<!-- Need to rewrite or remove this to be more positive.
<p>
@ -57,7 +59,8 @@
</p>
-->
<p>
For more information on my specifics and why I came to this lifestyle please visit
For more information on my specifics and why I came to this
lifestyle please visit
<a href="/journey/">My Journey</a>.
</p>
</div>

View File

@ -1,4 +1,23 @@
#!/usr/bin/php
<div class="row" id="experience">
<h2 class="col-12 header">My Profession</h2>
</div>
<div class="row">
<div class="col-12 text">
<p>
I'm a self-taught, college graduated, and professional software
developer with nearly a decade of experience in the corporate
world. I have been playing with Linux from a young age and have
always enjoyed doing system administration type activities.
<p>
</p>
Much of my career has focused on back-end type systems such as
databases as well as optimizing workflows. I've learned many
languages over the years and hope to learn many more. In my free
time I have also enjoyed writing user-facing apps for Android.
</p>
</div>
</div>
<div class="row" id="programs">
<h2 class="col-12 header">Public Programs</h2>
</div>
@ -119,7 +138,8 @@
</p>
</a>
<p>
Started as a fun project for learning. Playable but unfinished.
Started as a fun project for learning.
Playable but unfinished.
</p>
<p>
[<a href="https://play.google.com/store/apps/details?id=apps.hyperling.com.platformer"