3 Commits

5 changed files with 91 additions and 28 deletions
+12 -1
View File
@@ -4,5 +4,16 @@
if (!isset($GLOBALS["HEADER_TITLE"])) { if (!isset($GLOBALS["HEADER_TITLE"])) {
$GLOBALS["HEADER_TITLE"] = "Donate"; $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";
?> ?>
+9 -1
View File
@@ -1,7 +1,7 @@
#!/usr/bin/php #!/usr/bin/php
<!-- How people can support me with currency if they so desire. --> <!-- How people can support me with currency if they so desire. -->
<div class="row" id="donate"> <div class="row" id="donate">
<h2 class="col-12 header">Donate</h2> <h2 class="col-12 header">One-Time Gifts</h2>
</div> </div>
<div class="row text"> <div class="row text">
@@ -33,6 +33,14 @@
<div class="code"><code>bc1qsfe8dkvry3d34kztz449gkq67wq8fu2nkgfkh0</code></div> <div class="code"><code>bc1qsfe8dkvry3d34kztz449gkq67wq8fu2nkgfkh0</code></div>
<br> <br>
<!-- TBD: Bitcoin Cash
<a href="bitcoincash:">
<strong><code>BCH | Bitcoin Cash</code></strong>
</a>
<div class="code"><code>TBD</code></div>
<br>
-->
<a href="litecoin:ltc1qavmpu5d6ljntxsd6jj548m4yys83zwscl0dzkx"> <a href="litecoin:ltc1qavmpu5d6ljntxsd6jj548m4yys83zwscl0dzkx">
<strong><code>LTC | Litecoin</code></strong> <strong><code>LTC | Litecoin</code></strong>
</a> </a>
+17
View File
@@ -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>
+47 -9
View File
@@ -1,23 +1,61 @@
#!/usr/bin/php #!/usr/bin/php
<!-- How people can support me in a recurring manner.. --> <!-- How people can support me in a recurring manner.. -->
<div class="row" id="donate"> <div class="row" id="donate">
<h2 class="col-12 header">Donate</h2> <h2 class="col-12 header">Recurring Support</h2>
</div> </div>
<div class="row text"> <div class="row text">
<div class="col-6 center border"> <div class="col-6 center border">
<strong class="spacing">Preference 1 - BMAC or patreon?</strong> <strong class="spacing">Preference 1 - Liberapay</strong>
<p>Send any type of coin.</p>
<div class="header"> <p>Send without any sort of brokerage fees!</p>
</div>
<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>
</div> </div>
<div class="col-6 center border"> <div class="col-6 center border">
<strong class="spacing">Preference 2 - The other one!</strong> <strong class="spacing">Preference 2 - Ko-fi</strong>
<p>Donate directly to an address.</p> <p>5% brokerage fee.</p>
<div class="header"> <a href="https://ko-fi.com/hypervegan"
</div> 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"
>
</a>
</div> </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> </div>
+6 -17
View File
@@ -5,24 +5,13 @@
$GLOBALS["HEADER_TITLE"] = "Support"; $GLOBALS["HEADER_TITLE"] = "Support";
} }
include "helpers/body_open.php"; include "helpers/body_open.php";
?>
<div class="row"> include "subpages/support/header.php";
<h1 class="col-12 title">Support</h1>
<?php if (isset($GLOBALS["SHOW_BANNER_PICS"]) include "subpages/support/support.php";
&& !$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/donate.php"; include "subpages/support/donate.php";
// 2025-01-04 Not really looking for this type of thing. // 2025-01-04 Not really looking for this type of thing.
//include "subpages/support/gifts.php"; //include "subpages/support/gifts.php";