nodejs-website/pages/support.php

28 lines
597 B
PHP
Raw Normal View History

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
?>
<div class="row">
<h1 class="col-12 title">Support</h1>
</div>
<div class="row">
<div class="col-12 text">
<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 to do this.
</p>
</div>
</div>
2022-10-06 22:28:17 -05:00
<?php
include "subpages/support/gifts.php";
include "subpages/support/donate.php";
2022-10-06 22:16:27 -05:00
include "helpers/body_close.php";
?>