mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-01 21:40:27 +00:00
9 lines
230 B
PHP
9 lines
230 B
PHP
|
<?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");
|
||
|
?>
|