<!DOCTYPE html> <html> <head> <?php include(__DIR__.'/head.php'); ?> </head> <body> <header> <?php include(__DIR__.'/app/header.php'); ?> </header> <aside class="col-sm-3 sidebar-module sidebar-module-inset"> <?php include __DIR__.'/app/aside_activity.php' ?> </aside> <main class="container-fluid col-sm-5"> <?= $variables['pageContent'] ?> </main> <aside class="col-sm-4 sidebar-module sidebar-module-inset"> <?php include __DIR__.'/app/aside_messenger.php' ?> </aside> <footer> <?php include(__DIR__.'/footer.php'); ?> </footer> </body>