mirror of
https://github.com/ThunixdotNet/wiki.git
synced 2026-01-24 04:10:18 +00:00
20 lines
264 B
PHP
20 lines
264 B
PHP
<?php
|
|
|
|
$page = $_GET['page'];
|
|
|
|
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>";
|
|
?>
|