thebookofshaders/index.php

9 lines
230 B
PHP
Raw Normal View History

2015-07-15 12:12:44 +00:00
<?php
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");
?>