<?php

$returnedContentOfPageArray = phpBookGetWrappedContent($_GET["id"]);
foreach($returnedContentOfPageArray as $returnedContentOfPage) {
  ${$returnedContentOfPage[0]} = $returnedContentOfPage[1];
}
//###### CSS-Datei inkludieren
//##################################################################################
$includeCss = phpConvertPageToFilesystemPath('vorlagen:tpl_standard_css');
include($includeCss);

//###### HTML-Tag öffnen
//##################################################################################
echo '<html>';
$pageCounter = 1;
echo '
  <div class="parentbox"><!-- ###### parentbox umspannender Inhalts-Container (öffnen) -->
    <div class="parentbox-column-left"><!-- ###### Linke Spalte (öffnen) -->
      <div class="sectionbox-row"><!-- ###### sectionbox (Inhaltsverzeichnis) (öffnen)-->
        <div class="sectionbox-row-100">' . phpCreateProjectIndex(reset(explode(':gliederung', $_GET["id"])), 'close', false) . '</div>
      </div><!-- ###### sectionbox (Inhaltsverzeichnis) (schließen)-->
      
      <div class="sectionbox-row-sticky"><!-- ###### sectionbox (Vorwort) (öffnen)-->
        <div class="sectionbox-row-100"><!-- ###### sectionbox (Vorwort) (öffnen)-->
          <div class="titlebox"><!-- ###### titlebox (Projektname) (öffnen)-->
            <div class="titlebox-top"></html>' . $title . '<html></div>
            <div class="titlebox-bottom"></html>' . $title2 . '<html></div>
          </div><!-- ###### titlebox (Projektname) (schließen)-->
        </div>
      </div>
      
      <div class="sectionbox-row"><!-- ###### sectionbox (öffnen)-->
        <div class="sectionbox-row-100"><!-- ###### sectionbox (Inhaltsverzeichnis) (öffnen)-->
          <div class="contentbox">
            <div class="contentbox-title"></html>' . $title . '<html></div>
            <div class="contentbox-content"></html>' . $content . '<html></div>
          </div>
        </div>
      </div>
    </div>
  </div>
';
//###### HTML-Tag schließen
//##################################################################################
echo '</html>';

?>