mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-09 19:10:24 +00:00
32 lines
907 B
PHP
32 lines
907 B
PHP
<?php
|
|
|
|
$path = "../../";
|
|
$subtitle = "learning to fly";
|
|
$language = isset( $_GET[ 'lan' ] ) ? $_GET[ 'lan' ] : "";
|
|
$README = "README";
|
|
|
|
include($path."/header.php");
|
|
include($path."/src/parsedown/Parsedown.php");
|
|
|
|
echo '
|
|
<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>
|
|
<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()">< < Previous</li /-->
|
|
<li class="navigationBar" onclick="homePage()"> Home </li>
|
|
<li class="navigationBar" onclick="nextPage()">Next > ></li>
|
|
</ul>';
|
|
//*/
|
|
|
|
include($path."/footer.php");
|
|
?>
|