mirror of https://github.com/ThunixdotNet/wiki.git
Niceified this a bit
This commit is contained in:
parent
b2cd357199
commit
23aeabdd9b
19
wiki.php
19
wiki.php
|
@ -1,8 +1,19 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$page= $_GET['page'];
|
$page = $_GET['page'];
|
||||||
|
|
||||||
print "<html><body>";
|
if ( $page == "") {
|
||||||
echo ( shell_exec("/usr/bin/pandoc $page.md") );
|
$page = "main";
|
||||||
print "</body></html>";
|
}
|
||||||
|
|
||||||
|
print "<html>
|
||||||
|
<head>
|
||||||
|
<title>Thunix Wiki - $page</title>
|
||||||
|
</head>
|
||||||
|
<body>";
|
||||||
|
|
||||||
|
echo ( shell_exec("/usr/bin/pandoc /var/www/wiki.thunix.net/articles/$page.md") );
|
||||||
|
|
||||||
|
print " </body>
|
||||||
|
</html>";
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue