<?php
//###### Variablen auslesen //################################################################################## $returnedContentOfPageArray = phpBookGetWrappedContent($_GET["id"]);
foreach($returnedContentOfPageArray as $returnedContentOfPage) {
${$returnedContentOfPage[0]} = $returnedContentOfPage[1];
}
//###### CSS-Datei
//##################################################################################
$includeCss = phpConvertPageToFilesystemPath(':vorlagen:tpl_standard_css');
include($includeCss);
// ###### Rechte Sidebar
//##################################################################################
$sidebarRight = phpConvertPageToFilesystemPath('blog:ernaehrung:vorlagen:tpl_sidebar_right_standard');
//###### HTML-Tag öffnen
//##################################################################################
echo '<html>';
echo '
<div class="parentbox"><!-- ###### parentbox umspannender Inhalts-Container (öffnen) -->
<div class="parentbox-column-left"><!-- ###### Linke Spalte parentbox-column-left (öffnen) -->
<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>
</div>
</div><!-- ###### titlebox (Produktname) (schließen)-->
<div class="sectionbox-column"><!-- ###### Sectionbox für Spalten im umspannenden Inhalts-Container (öffnen) -->
<div class="sectionbox-column-var" style="--given-column-width-var: 25;"><!-- ###### Sectionbox für Spalten im umspannenden Inhalts-Container (öffnen) -->
<div class="sectionbox-row"><!-- ###### sectionbox (Vorwort) (öffnen)-->
<div class="sectionbox-row-100"><!-- ###### Sectionbox für Spalten im umspannenden Inhalts-Container (öffnen) -->
<div class="imagebox">
<div class="imagebox-content"></html>{{' . $cover . '?nolink}}<html></div>
</div>
</div>
</div>
<div class="sectionbox-row"><!-- ###### sectionbox (Vorwort) (öffnen)-->
<div class="sectionbox-row-100"><!-- ###### Sectionbox für Spalten im umspannenden Inhalts-Container (öffnen) -->
<div class="contentbox">
<div class="contentbox-title">Tags</div>
<div class="contentbox-content"></html>' . $genre . '<html></div>
</div>
</div>
</div>
</div>
<div class="sectionbox-column-var" style="--given-column-width-var: 75;"><!-- ###### Sectionbox für Spalten im umspannenden Inhalts-Container (öffnen) -->
<div class="sectionbox-row-100"><!-- ###### Sectionbox für Spalten im umspannenden Inhalts-Container (öffnen) -->
<div class="contentbox">
<div class="contentbox-title"> Zusammenfassung</div>
<div class="contentbox-content"></html>' . $summary . '<html></div>
</div>
</div>
</div>
</div>
<div class="sectionbox-row"><!-- ###### sectionbox (Inhaltsverzeichnis) (öffnen)-->
<div class="sectionbox-row-100">' . phpCreateProjectIndex(preg_replace('/:' . end(explode(':', $_GET["id"])) . '/','',$_GET["id"]), 'open', false) . '</div>
</div><!-- ###### sectionbox (Inhaltsverzeichnis) (schließen)-->
</div><!-- ###### Linke Spalte parentbox-column-left (schließen) -->
<div class="parentbox-column-right"><!-- ###### ###### Rechte Spalte parentbox-column-right (öffnen) -->
';
include($sidebarRight);
echo'
</div><!-- ###### ###### Rechte Spalte parentbox-column-right (schließen) -->
</div><!-- ###### parentbox umspannender Inhalts-Container (schließen) -->'; //###### HTML-Tag schließen //################################################################################## echo '</html>';
?>