Compare commits
20 Commits
main
...
36341648ba
| Author | SHA1 | Date | |
|---|---|---|---|
| 36341648ba | |||
| b8d331ca23 | |||
| 12ad71707a | |||
| 3b93d63d20 | |||
| e54476c931 | |||
| 7aa02e0ef5 | |||
| 18701a3c56 | |||
| 464f3aef39 | |||
| 42c912e1a3 | |||
| a4bf722bdc | |||
| ce0dcb0f46 | |||
| dfe69ff4ea | |||
| eb18f54220 | |||
| fee1b668c9 | |||
| fd9244ede4 | |||
| 7c09baa243 | |||
| c61c508ce8 | |||
| f3785042f2 | |||
| 2a4aedce5e | |||
| 0ba992352a |
@@ -134,6 +134,11 @@ async function main() {
|
||||
<strong>Web Pages (Alphabetical)</strong>
|
||||
<ul>
|
||||
`;
|
||||
let robots_txt = `
|
||||
User-agent: *
|
||||
Allow: /
|
||||
Sitemap: https://hyperling.com/sitemap.xml
|
||||
`;
|
||||
|
||||
console.log("...Adding Routes...");
|
||||
let router = express.Router();
|
||||
@@ -199,6 +204,13 @@ async function main() {
|
||||
res.send(sitemap_html);
|
||||
});
|
||||
|
||||
// Provide a robots.txt for where search engines should find things.
|
||||
console.log(" * Creating router for robots.txt");
|
||||
router.get('/robots.txt', function (req, res) {
|
||||
console.log("robots.txt being provided to", req.socket.remoteAddress)
|
||||
res.send(robots_txt);
|
||||
});
|
||||
|
||||
// Return a resource from the files folder.
|
||||
// TBD/TODO would be great to log this as "DATE: ADDRESS hit ROUTER requesting RESOURCE"
|
||||
console.log(" * Creating router for files");
|
||||
|
||||
+1
-1
@@ -55,8 +55,8 @@
|
||||
</div>
|
||||
<?php
|
||||
include "subpages/about/notice.php";
|
||||
include "subpages/about/health.php";
|
||||
include "subpages/about/stance.php";
|
||||
include "subpages/about/health.php";
|
||||
|
||||
include "helpers/body_close.php";
|
||||
?>
|
||||
|
||||
@@ -47,6 +47,12 @@
|
||||
<ul class="indent"><li>
|
||||
<a href="mailto:me@hyperling.com">me@hyperling.com</a>
|
||||
</li></ul>
|
||||
<p>
|
||||
Other methods such as a few messaging clients can be found here:
|
||||
</p>
|
||||
<ul class="indent"><li>
|
||||
<a href="https://blog.hyperling.com/contact">blog.hyperling.com/contact</a>
|
||||
</li></ul>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
+12
-1
@@ -4,5 +4,16 @@
|
||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||
$GLOBALS["HEADER_TITLE"] = "Donate";
|
||||
}
|
||||
include "support.php";
|
||||
include "helpers/body_open.php";
|
||||
|
||||
include "subpages/support/header.php";
|
||||
|
||||
include "subpages/support/donate.php";
|
||||
|
||||
include "subpages/support/support.php";
|
||||
|
||||
// 2025-01-04 Not really looking for this type of thing.
|
||||
//include "subpages/support/gifts.php";
|
||||
|
||||
include "helpers/body_close.php";
|
||||
?>
|
||||
|
||||
@@ -36,25 +36,26 @@
|
||||
-->
|
||||
|
||||
<p class="menu-list">
|
||||
Main :
|
||||
<a href="/">Home</a>
|
||||
Main:
|
||||
<a href="/apps/">Apps</a>
|
||||
<a href="/about/">About</a>
|
||||
<a href="/contact/">Contact</a>
|
||||
<a href="/support/">Support</a>
|
||||
| Media :
|
||||
<a href="/apps/">Apps</a>
|
||||
| Media:
|
||||
<a href="https://git.hyperling.com/me/"
|
||||
target="_blank" rel="noopener noreferrer">Git</a>
|
||||
target="_blank" rel="noopener noreferrer">Code</a>
|
||||
<a href="https://works.hyperling.com/tags/books/"
|
||||
target="_blank" rel="noopener noreferrer">Books</a>
|
||||
<a href="https://odysee.com/@HyperVegan:2"
|
||||
<a href="https://works.hyperling.com/videos/"
|
||||
target="_blank" rel="noopener noreferrer">Videos</a>
|
||||
<a href="/photos/">Photos</a>
|
||||
| Blog:
|
||||
<a href="https://blog.hyperling.com/categories/articles/"
|
||||
target="_blank" rel="noopener noreferrer">Articles</a>
|
||||
<a href="https://recipes.hyperling.com/categories/recipes/"
|
||||
target="_blank" rel="noopener noreferrer">Recipes</a>
|
||||
<a href="https://blog.hyperling.com/categories/musings/"
|
||||
target="_blank" rel="noopener noreferrer">Poetry</a>
|
||||
<a href="https://blog.hyperling.com/categories/guides/"
|
||||
<a href="https://recipes.hyperling.com/categories/guides/"
|
||||
target="_blank" rel="noopener noreferrer">Guides</a>
|
||||
</div>
|
||||
|
||||
+1
-1
@@ -111,7 +111,7 @@ cat << EOF
|
||||
Speaking of lifestyle, that is something else I learned from listening
|
||||
to my new role models. "Sleep Water Sugar" as Durianrider used to say.
|
||||
The
|
||||
<a href="https://files.hyperling.com/media/HealthPriorities.pdf"
|
||||
<a href="/files/media/documents/HealthPriorities.pdf"
|
||||
target="_blank">PDF</a>
|
||||
on my main
|
||||
<a href="/about/#health" target="_blank">Health</a>
|
||||
|
||||
+1
-1
@@ -107,7 +107,7 @@
|
||||
<div class="row">
|
||||
<div class="col-12 text">
|
||||
<p>
|
||||
I don't have social media, so where do my photos and videos go?
|
||||
I don't have social media, so where do my personal photos and videos go?
|
||||
Try right here!
|
||||
</p>
|
||||
<ul class="indent"><li>
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ cd $DIR/..
|
||||
photos_all=./files/photos/all.html
|
||||
photos=./pages/photos.sh
|
||||
|
||||
# If the all script does not exist,call the generator and ignore its output.
|
||||
# If the all script does not exist, call the generator and ignore its output.
|
||||
if [[ ! -e $photos_all ]]; then
|
||||
$photos > /dev/null
|
||||
fi
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
# 2024-01-21 Hyperling
|
||||
# Transition away from PhotoPrism. Helps to save system resources and downsize.
|
||||
|
||||
## TBD ##
|
||||
# - Have links at the top of the ALL page for jumping between years.
|
||||
## End TBD
|
||||
|
||||
## Static Variables ##
|
||||
DIR=`dirname $0`
|
||||
a="a target='_blank' rel='noopener noreferrer'"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/usr/bin/php
|
||||
<!-- How people can support me with currency if they so desire. -->
|
||||
<div class="row" id="donate">
|
||||
<h2 class="col-12 header">Donate</h2>
|
||||
<h2 class="col-12 header">One-Time Gifts</h2>
|
||||
</div>
|
||||
|
||||
<div class="row text">
|
||||
@@ -21,21 +21,35 @@
|
||||
<div class="header">
|
||||
<br>
|
||||
|
||||
<a href="monero:4ATk6owoMki46CuVfyAHS57FB5deqVFudTsaifQC1cfmcaQemgPEftcjZcW9DmcyfrfdRjxHQ9m4JAVSorYTgm6h8JnT7ao">
|
||||
<strong><code>XMR | Monero</code></strong>
|
||||
</a>
|
||||
<div class="code"><code>4ATk6owoMki46CuVfyAHS57FB5deqVFudTsaifQC1cfmcaQemgPEftcjZcW9DmcyfrfdRjxHQ9m4JAVSorYTgm6h8JnT7ao</code></div>
|
||||
<br>
|
||||
|
||||
<a href="bitcoin:bc1qsfe8dkvry3d34kztz449gkq67wq8fu2nkgfkh0?">
|
||||
<strong><code>BTC | Bitcoin</code></strong>
|
||||
</a>
|
||||
<div class="code"><code>bc1qsfe8dkvry3d34kztz449gkq67wq8fu2nkgfkh0</code></div>
|
||||
<br>
|
||||
|
||||
<a href="bitcoincash:qzr00gaqeldlu3amjdn59f2y73276v8jwu6vanays2">
|
||||
<strong><code>BCH | Bitcoin Cash</code></strong>
|
||||
</a>
|
||||
<div class="code"><code>qzr00gaqeldlu3amjdn59f2y73276v8jwu6vanays2</code></div>
|
||||
<br>
|
||||
|
||||
<a href="litecoin:ltc1qavmpu5d6ljntxsd6jj548m4yys83zwscl0dzkx">
|
||||
<strong><code>LTC | Litecoin</code></strong>
|
||||
</a>
|
||||
<div class="code"><code>ltc1qavmpu5d6ljntxsd6jj548m4yys83zwscl0dzkx</code></div>
|
||||
<br>
|
||||
|
||||
<strong><code>LBC | Odysee's Coin</code></strong>
|
||||
<!--
|
||||
<a href=""><strong><code>LBC | Odysee's Coin</code></strong></a>
|
||||
<div class="code"><code>bDWP6qZajtm9Q9EkryKTorRwKFd5eDbPJj</code></div>
|
||||
<br>
|
||||
-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/php
|
||||
<div class="row">
|
||||
<h1 class="col-12 title">Donation Methods</h1>
|
||||
<?php if (isset($GLOBALS["SHOW_BANNER_PICS"])
|
||||
&& !$GLOBALS["SHOW_BANNER_PICS"])
|
||||
echo '
|
||||
<div class="col-12 header center" >
|
||||
<img src="/files/media/icons/support.jpg" alt="<<support.jpg>>">
|
||||
</div>
|
||||
';?>
|
||||
<div class="col-12 header center">
|
||||
<p>
|
||||
Anything is very much appreciated!!
|
||||
Thank you for considering me!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
Executable
+67
@@ -0,0 +1,67 @@
|
||||
#!/usr/bin/php
|
||||
<!-- How people can support me in a recurring manner.. -->
|
||||
<div class="row" id="donate">
|
||||
<h2 class="col-12 header">Recurring Support</h2>
|
||||
</div>
|
||||
|
||||
<div class="row text">
|
||||
|
||||
<div class="col-6 center border">
|
||||
<strong class="spacing">Preference 1 - Liberapay</strong>
|
||||
|
||||
<p>Send weekly without any sort of brokerage fees!</p>
|
||||
|
||||
<a href="https://liberapay.com/HyperVegan/donate"
|
||||
target="_blank" rel="noopener noreferrer"
|
||||
>
|
||||
<img alt="Donate using Liberapay"
|
||||
src="https://liberapay.com/assets/widgets/donate.svg"
|
||||
alt="liberapay.com/HyperVegan/donate"
|
||||
>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<img src="https://img.shields.io/liberapay/patrons/HyperVegan.svg?logo=liberapay">
|
||||
<br/>
|
||||
<img src="https://img.shields.io/liberapay/receives/HyperVegan.svg?logo=liberapay">
|
||||
<br/>
|
||||
<img src="https://img.shields.io/liberapay/goal/HyperVegan.svg?logo=liberapay">
|
||||
</a>
|
||||
|
||||
<p>I also suggest donating to Liberapay for making this possible!</p>
|
||||
<a href="https://en.liberapay.com/Liberapay/"
|
||||
target="_blank" rel="noopener noreferrer"
|
||||
>Donate to the platform.</a>
|
||||
</div>
|
||||
|
||||
<div class="col-6 center border">
|
||||
<strong class="spacing">Preference 2 - Ko-fi</strong>
|
||||
<p>Monthly donations with 5% brokerage fee. Also supports one-time tips.</p>
|
||||
<a href="https://ko-fi.com/hypervegan"
|
||||
target="_blank" rel="noopener noreferrer"
|
||||
>
|
||||
<img alt="Donate using Ko-fi"
|
||||
src="https://storage.ko-fi.com/cdn/opengraph_assets/default_creator_og/hz_profile_page.png"
|
||||
alt="ko-fi.com/hypervegan"
|
||||
height=200
|
||||
>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Requires using Stripe, which asks for last 4 of social. Pass for now.
|
||||
<div class="col-4 center border">
|
||||
<strong class="spacing">Preference 3 - Buy Me A Coffee</strong>
|
||||
<p>5% brokerage fee.</p>
|
||||
<a href="https://buymeacoffee.com/hypervegan"
|
||||
target="_blank" rel="noopener noreferrer"
|
||||
>
|
||||
<img alt="Donate using Ko-fi"
|
||||
src="https://storage.ko-fi.com/cdn/opengraph_assets/default_creator_og/hz_profile_page.png"
|
||||
alt="buymeacoffee.com/hypervegan"
|
||||
>
|
||||
</a>
|
||||
</div>
|
||||
-->
|
||||
|
||||
</div>
|
||||
+6
-17
@@ -5,24 +5,13 @@
|
||||
$GLOBALS["HEADER_TITLE"] = "Support";
|
||||
}
|
||||
include "helpers/body_open.php";
|
||||
?>
|
||||
<div class="row">
|
||||
<h1 class="col-12 title">Support</h1>
|
||||
<?php if (isset($GLOBALS["SHOW_BANNER_PICS"])
|
||||
&& !$GLOBALS["SHOW_BANNER_PICS"])
|
||||
echo '
|
||||
<div class="col-12 header center" >
|
||||
<img src="/files/media/icons/support.jpg" alt="<<support.jpg>>">
|
||||
</div>
|
||||
';?>
|
||||
<div class="col-12 header center">
|
||||
<p>
|
||||
Anything is very much appreciated!! Thank you for considering me!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
include "subpages/support/header.php";
|
||||
|
||||
include "subpages/support/support.php";
|
||||
|
||||
include "subpages/support/donate.php";
|
||||
|
||||
// 2025-01-04 Not really looking for this type of thing.
|
||||
//include "subpages/support/gifts.php";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user