thebookofshaders/appendix/index.php

27 lines
703 B
PHP
Raw Normal View History

2015-07-15 12:12:44 +00:00
<?php
$path = "..";
include($path."/header.php");
include($path."/src/parsedown/Parsedown.php");
2015-07-15 12:12:44 +00:00
echo '
2016-05-07 19:07:34 +00:00
<div class="header"><p><a href="https://thebookofshaders.com/">The Book of Shaders</a> by <a href="http://patriciogonzalezvivo.com">Patricio Gonzalez Vivo</a></p></div>
2015-07-15 12:12:44 +00:00
<hr>
<div id="content">
';
$Parsedown = new Parsedown();
echo $Parsedown->text(file_get_contents ('README.md'));
echo '
</div>
<hr>
<ul class="navigationBar" >
<li class="navigationBar" onclick="previusPage()">&lt; &lt; Previous</li>
<li class="navigationBar" onclick="homePage()"> Home </li>
<li class="navigationBar" onclick="nextPage()">Next &gt; &gt;</li>
</ul>';
include($path."/footer.php");
2015-07-15 12:12:44 +00:00
?>