You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thebookofshaders/glossary/index.php

28 lines
621 B
PHTML

9 years ago
<?php
$path = "..";
9 years ago
if(!empty($_GET))
$subtitle = ": ".$_GET['search'];
include($path."/header.php");
include($path."/src/parsedown/Parsedown.php");
9 years ago
echo '
<div class="header"><p><a href="http://thebookofshaders.com/">The Book of Shaders</a> by <a href="http://patriciogonzalezvivo.com">Patricio Gonzalez Vivo</a></p></div>
9 years ago
<hr>
<div id="content">
';
$Parsedown = new Parsedown();
if(empty($_GET))
echo $Parsedown->text(file_get_contents ('README.md'));
else
echo $Parsedown->text(file_get_contents ( $_GET['search'].'/README.md' ));
9 years ago
echo '
</div>
<hr>';
include($path."/footer.php");
9 years ago
?>