Final content work for the night.

This commit is contained in:
2022-10-06 22:28:17 -05:00
parent 02e5e40143
commit 8cfe6e43e2
3 changed files with 29 additions and 8 deletions

View File

@ -1,8 +1,28 @@
#!/usr/bin/php
<!--
Page to provide ways people can support me.
-->
<?php
include "helpers/body_open.php";
?>
<h1>Support<h1>
<p>
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";
include "helpers/section_open.php";
include "subpages/support/donate.php";
include "helpers/section_close.php";
include "helpers/body_close.php";
?>