Source of index.php

<?php
/**
 * Description goes here...
 *
 * @author Pontus Östlund <spam@poppa.se>
*/
$p = getProject();
$p->Header('Poppa PHP Library');
echo "<h1>Poppa PHP Library</h1>\n";
echo $p->Textify(file_get_contents('INTRO'));
echo "<h2>PLib summary</h2>\n";
echo $p->Textify(file_get_contents('PSUM'));
$p->Footer();
?>