<?php ################################################################################## ###### Hauptanweisungen ################################################################################## ###### HTML-Tag oeffnen

echo '<html>';
//###### Funktionsaufruf (alle Dateien sammeln) und anschliessend sortieren
$blogPageData = recursiveScan($convertedPath, $excludeArray);
array_multisort(array_column($blogPageData, 'blogPageCreationTimeStamp'), SORT_DESC, $blogPageData );

echo ' <!– ################################################################################## ###### parentbox umspannender Inhalts-Container (öffnen) ################################################################################## –>

<!– ################################################################################## ###### Voransicht-Box für Blog-Einträge (öffnen) ################################################################################## –>

    <div class="contentbox-left">

';

if ($maxDisplayedBlogArticles == -1) {
  foreach ($blogPageData as $element) {
    echo '
      <div class="sectionbox-column">
        <div class="titlebox">
          <div class="titlebox-top"></html>' . $element['blogPageTitle'] . '<html></div>
          <div class="titlebox-bottom"></html>' . $element['blogPageCategories'] . '<html></div>
        </div>
        <div class="contentbox">
          <div class="contentbox-information"></html>{{' . $element['blogPageCover'] . '?nolink}}<html><br /><br /></div>
        </div>
        <div class="eyecatcherbox">
          <div class="eyecatcherbox-top"></html>' . $element['blogPageEyeCatcher'] . '[[' . $element['blogPageFull'] . '|weiterlesen...]]<html></div>
          <div class="eyecatcherbox-bottom"></html>' . $element['blogPageCreationDate'] . ', ' .$element['blogPageCreationTime'] . '<html></div>
        </div>
      </div>
    ';
  }
} else {
  for ($articleCounter=0; $articleCounter < $maxDisplayedBlogArticles; $articleCounter++) {
    if (array_key_exists($articleCounter, $blogPageData)) {
      echo '
        <div class="sectionbox-column">
          <div class="titlebox">
            <div class="titlebox-top"></html>' . $blogPageData[$articleCounter]['blogPageTitle'] . '<html></div>
            <div class="titlebox-bottom"></html>' . $blogPageData[$articleCounter]['blogPageCategories'] . '<html></div>
          </div>
          <div class="contentbox">
            <div class="contentbox-information"></html>{{' . $blogPageData[$articleCounter]['blogPageCover'] . '?nolink}}<html><br /><br /></div>
          </div>
          <div class="eyecatcherbox">
            <div class="eyecatcherbox-top"></html>' . $blogPageData[$articleCounter]['blogPageEyeCatcher'] . '[[' . $blogPageData[$articleCounter]['blogPageFull'] . '|weiterlesen...]]<html></div>
            <div class="eyecatcherbox-bottom"></html>' . $blogPageData[$articleCounter]['blogPageCreationDate'] . ', ' .$blogPageData[$articleCounter]['blogPageCreationTime'] . '<html></div>
          </div>
        </div>
      ';
    }
  }
}	  

echo '

      </div>
    <div class="contentbox-right"></div>

<!– ################################################################################## ###### Voransicht-Box für Blog-Einträge (schließen) ################################################################################## –> </div> <!– ################################################################################## ###### parentbox umspannender Inhalts-Container (schließen) ################################################################################## –>

</div>

<script> var biggestHeight = 0; Loop through elements children to find & set the biggest height $(".parentbox*").each(function(){ If this elements height is bigger than the biggestHeight if ($(this).height() > biggestHeight ) {

 // Set the biggestHeight to this Height
 biggestHeight = $(this).height();

} });

Set the container height $(".parentbox").height(biggestHeight); </script> '; ###### HTML-Tag schliessen

echo '</html>';

?>