wiki/wiki.php

20 lines
264 B
PHP
Raw Normal View History

<?php
2019-06-28 15:51:05 +00:00
$page = $_GET['page'];
2019-06-28 15:51:05 +00:00
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>";
?>