1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
Daniel Neto 2023-08-18 09:34:13 -03:00
parent 1510015c74
commit ef1777603a
4 changed files with 16 additions and 12 deletions

View file

@ -128,16 +128,16 @@ class Page {
$rtl = 'rtl';
}
echo "<body class=\"{$global['bodyClass']} {$rtl} {$this->bodyClass}\">";
echo '<div id="_avideoPageLoader">';
$loaderParts = Layout::getLoaderDefault();
echo $loaderParts['css'];
echo $loaderParts['html'];
echo '</div>';
echo '<div style="display: none;" id="_avideoPageContent">';
//echo '<div id="_avideoPageLoader">';
//$loaderParts = Layout::getLoaderDefault();
//echo $loaderParts['css'];
//echo $loaderParts['html'];
//echo '</div>';
//echo '<div style="display: none;" id="_avideoPageContent">';
$this->getNavBar();
echo $this->bodyContent;
$this->getFooter();
echo '</div>';
//echo '</div>';
echo "</body>";
}