mirror of
https://git.bakhai.co.in/FbIN/4Get.git
synced 2025-11-05 20:31:30 +05:30
commit
c6e404d2af
132 changed files with 34951 additions and 0 deletions
39
about.php
Normal file
39
about.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" => "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
|
||||
]
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue