mirror of
https://github.com/ThunixdotNet/wiki.git
synced 2026-01-24 04:10:18 +00:00
Niceified this a bit
This commit is contained in:
19
wiki.php
19
wiki.php
@@ -1,8 +1,19 @@
|
||||
<?php
|
||||
|
||||
$page= $_GET['page'];
|
||||
$page = $_GET['page'];
|
||||
|
||||
print "<html><body>";
|
||||
echo ( shell_exec("/usr/bin/pandoc $page.md") );
|
||||
print "</body></html>";
|
||||
if ( $page == "") {
|
||||
$page = "main";
|
||||
}
|
||||
|
||||
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>";
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user