1
Fork 1
mirror of https://git.lolcat.ca/lolcat/4get.git synced 2024-09-06 17:18:09 -04:00
4get/about.php
2024-02-17 23:54:52 -05:00

39 lines
507 B
PHP

<?php
include "data/config.php";
include "lib/frontend.php";
$frontend = new frontend();
echo
$frontend->load(
"header_nofilters.html",
[
"title" => "About",
"class" => " class=\"about\""
]
);
$left =
explode(
"\n",
file_get_contents("template/about.html")
);
$out = "";
foreach($left as $line){
$out .= trim($line);
}
echo
$frontend->load(
"search.html",
[
"timetaken" => null,
"class" => "",
"right-left" => "",
"right-right" => "",
"left" => $out
]
);