<?php

$returnedContentOfPageArray = phpBookGetWrappedContent($_GET["id"]);
foreach($returnedContentOfPageArray as $returnedContentOfPage) {
  ${$returnedContentOfPage[0]} = $returnedContentOfPage[1];
  echo 'Inhalt: ' . $returnedContentOfPage[1] . '  \\\\  ';
}
$contentSplitByLinebreak = explode(PHP_EOL, $content);
foreach ($contentSplitByLinebreak as $contentLinebreaked) {
  $contentSplitComplete = phpSplitgivenContentByChars($contentLinebreaked, 60);
}
//###### CSS-Datei inkludieren
//##################################################################################
$includeCss = phpConvertPageToFilesystemPath('projekte:vorlagen:nsp_tpl_projekte_lyrik_titelseite_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') . '</div>
        </div><!-- ###### sectionbox (Inhaltsverzeichnis) (schließen)-->
        <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 class="contentbox" style="page-break-before: always;">
          <div class="normpagebox">
            <div class="normpagebox-title">Seite ' . $pageCounter . '</div>
            <div class="normpagebox-content">';
        
$lineNumber = 0;
for ($lineCounter=0; $lineCounter<count($contentSplitComplete); $lineCounter++) {
  $lineNumber++;
  if ($lineNumber % 30 == 0) {
    $pageCounter++;    
          echo '</div>
              </div>
            </div>
            <div class="contentbox" style="margin-top: var(--global-font-size); page-break-before: always;">
              <div class="normpagebox">
                <div class="normpagebox-title">Seite ' . $pageCounter . '</div>
                <div class="normpagebox-content">';
    }    
    echo '</html>' . $contentSplitComplete[$lineCounter] . PHP_EOL . '<html>';
}
    echo '      </div>
              </div>
            </div>
          </div>
';
//###### HTML-Tag schließen
//##################################################################################
echo '</html>';

?>

Diese Website verwendet Cookies. Durch die Nutzung der Website stimmen Sie dem Speichern von Cookies auf Ihrem Computer zu. Außerdem bestätigen Sie, dass Sie unsere Datenschutzbestimmungen gelesen und verstanden haben. Wenn Sie nicht einverstanden sind, verlassen Sie die Website.Weitere Information