20 lines
460 B
PHP
Executable File
20 lines
460 B
PHP
Executable File
#!/usr/bin/php
|
|
<?php
|
|
/* Alias for the support page with a more common name. */
|
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
|
$GLOBALS["HEADER_TITLE"] = "Donate";
|
|
}
|
|
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";
|
|
?>
|