thebookofshaders/index.php
Patricio Gonzalez Vivo 0c22b14747 wasn t that
2015-07-17 16:44:54 -04:00

10 lines
244 B
PHP

<?php
$path = ".";
include("header.php");
echo '<div id="content">';
include("src/parsedown/Parsedown.php");
$Parsedown = new Parsedown();
echo $Parsedown->text(file_get_contents ('README.md'));
echo '</div>';
include("footer.php");
?>