<?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">

';

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>
  ';
}
  

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>';

?>