15 lines
579 B
PHP
15 lines
579 B
PHP
<?php
|
|
require "property-manager.php"; // Initialise properties
|
|
require "file_information.php";
|
|
|
|
$properties = load_properties();
|
|
$file_name = $_GET[$properties["file QS"]] or die("No querystring given.");
|
|
if (file_exists($file_name)) {$GLOBALS["file"] = generate_file_object($file_name);}
|
|
else {die("File '$file_name' does not exist!");}
|
|
header("Content Type: text/html");
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html><head><title><?php echo($properties["html title"]);?></title>
|
|
<link rel=stylesheet type=text/css href="style.css"/>
|
|
<?php yandex_meta($properties["yandex transparency"]) ?>
|
|
</head>
|