2022-10-06 22:16:27 -05:00
|
|
|
#!/usr/bin/php
|
|
|
|
|
2022-10-06 22:28:17 -05:00
|
|
|
<!--
|
|
|
|
Page to provide ways people can support me.
|
|
|
|
-->
|
|
|
|
|
2022-10-06 22:16:27 -05:00
|
|
|
<?php
|
|
|
|
include "helpers/body_open.php";
|
2022-10-06 22:28:17 -05:00
|
|
|
?>
|
|
|
|
|
2022-10-08 09:19:40 -05:00
|
|
|
<h1>Support</h1>
|
|
|
|
<p>
|
2022-10-06 22:28:17 -05:00
|
|
|
While I do not ask for anything, and prefer to take care of myself,
|
|
|
|
I acknowledge that some people enjoy gift giving and would like to
|
|
|
|
help me out. Below are my preferred ways that this be done.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
include "helpers/section_open.php";
|
|
|
|
include "subpages/support/gifts.php";
|
|
|
|
include "helpers/section_close.php";
|
2022-10-06 22:16:27 -05:00
|
|
|
|
2022-10-06 22:28:17 -05:00
|
|
|
include "helpers/section_open.php";
|
|
|
|
include "subpages/support/donate.php";
|
|
|
|
include "helpers/section_close.php";
|
2022-10-06 22:16:27 -05:00
|
|
|
|
|
|
|
include "helpers/body_close.php";
|
|
|
|
?>
|
|
|
|
|