1
Fork 1
mirror of https://git.lolcat.ca/lolcat/4get.git synced 2024-09-13 17:28:08 -04:00
4get/about.php

40 lines
507 B
PHP
Raw Permalink Normal View History

2023-07-22 14:41:14 -04:00
<?php
2023-11-07 08:04:56 -05:00
include "data/config.php";
2023-07-22 14:41:14 -04:00
include "lib/frontend.php";
$frontend = new frontend();
echo
2023-11-07 08:04:56 -05:00
$frontend->load(
"header_nofilters.html",
[
"title" => "About",
"class" => " class=\"about\""
]
);
2023-07-22 14:41:14 -04:00
$left =
2023-11-07 08:04:56 -05:00
explode(
"\n",
file_get_contents("template/about.html")
);
2023-07-22 14:41:14 -04:00
$out = "";
foreach($left as $line){
$out .= trim($line);
}
echo
$frontend->load(
"search.html",
[
2024-02-17 23:54:52 -05:00
"timetaken" => null,
2023-07-22 14:41:14 -04:00
"class" => "",
"right-left" => "",
"right-right" => "",
"left" => $out
]
);