diff options
author | lolcat <will@lolcat.ca> | 2024-07-06 17:01:45 -0400 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2024-07-06 17:01:45 -0400 |
commit | 6f91ec9d4f4fc80be459652f79fe3babd2b08509 (patch) | |
tree | ceca9ba3becbdb572332e6eea2e98be73ad9c3cc /donate.php | |
parent | 53d40c6e4e86fdd8ed86d5fb043b6c93d9c7b3ea (diff) |
add monero address
Diffstat (limited to 'donate.php')
-rw-r--r-- | donate.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/donate.php b/donate.php new file mode 100644 index 0000000..1ae2cac --- /dev/null +++ b/donate.php @@ -0,0 +1,39 @@ +<?php + +include "data/config.php"; +include "lib/frontend.php"; +$frontend = new frontend(); + +echo + $frontend->load( + "header_nofilters.html", + [ + "title" => "Donate to the project", + "class" => " class=\"about\"" + ] + ); + +$left = + explode( + "\n", + file_get_contents("template/donate.html") + ); + +$out = ""; + +foreach($left as $line){ + + $out .= trim($line); +} + +echo + $frontend->load( + "search.html", + [ + "timetaken" => null, + "class" => "", + "right-left" => "", + "right-right" => "", + "left" => $out + ] + ); |