11 lines
239 B
PHP
11 lines
239 B
PHP
<?php
|
|
// Print header
|
|
print desHeader($options[$_GET['r']]);
|
|
|
|
// Print page contents
|
|
print '<div class="content standalone markdown">';
|
|
print $parser->text(file_get_contents($readPath));
|
|
print '</div>';
|
|
|
|
// Print footer
|
|
print desFooter();
|