wiki.php/wiki.php

72 lines
1.1 KiB
PHP
Raw Normal View History

2019-07-01 01:18:23 +00:00
<?php
include('config.php');
$page = $_GET['page'];
$style = $_GET['style'];
2019-07-01 01:18:23 +00:00
if ( $page == "") {
$page = "main";
}
if ( $style == "") {
if ( $site_style == "") {
$site_style="site";
}
}
else {
$site_style=$style;
}
2019-07-01 01:18:23 +00:00
print "<!DOCTYPE html>
<html lang='en'>
<head>
<title>$site_name - $page</title>
<link rel='stylesheet' type='text/css' href='$site_root/includes/$site_style.css'>
2019-07-01 01:18:23 +00:00
</head>
<body>
<!-- Begin Header -->
<div id='header'>";
2019-07-01 01:18:23 +00:00
echo ( shell_exec("/usr/bin/pandoc $doc_root/includes/header.md") );
print "
</div>
<!-- End Header -->
";
2019-07-01 01:18:23 +00:00
print "<hr>
<div id='body'>
<!-- Begin Sidebar -->
<div id='sidebar'>
";
2019-07-01 01:18:23 +00:00
echo ( shell_exec("/usr/bin/pandoc $doc_root/includes/sidebar.md") );
print " </div>
<!-- End Sidebar -->
<!-- Begin Body -->
<div id='content'>";
2019-07-01 01:18:23 +00:00
echo ( shell_exec("/usr/bin/pandoc $doc_root/articles/$page.md") );
print " </div>
<!-- End Body -->
2019-07-01 01:18:23 +00:00
</div>
<!-- Begin Footer -->
<div id='footer'>
<hr>
";
2019-07-01 01:18:23 +00:00
echo ( shell_exec("/usr/bin/pandoc $doc_root/includes/footer.md") );
print " </div>
<!-- End Footer -->
2019-07-01 01:18:23 +00:00
</body>
</html>";
?>