add monero address
This commit is contained in:
parent
53d40c6e4e
commit
6f91ec9d4f
3 changed files with 61 additions and 1 deletions
39
donate.php
Normal file
39
donate.php
Normal file
|
@ -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
|
||||
]
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue