index.php 595 B

1234567891011121314151617181920
  1. <!doctype html>
  2. <html <?php language_attributes(); ?>>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <?php wp_head(); ?>
  7. </head>
  8. <body <?php body_class(); ?>>
  9. <?php wp_body_open(); ?>
  10. <?php do_action('get_header'); ?>
  11. <div id="app" class="banner bg-jlg-dark-blue text-jlg-white font-authentic flex w-full flex-col justify-center items-center">
  12. <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  13. </div>
  14. <?php do_action('get_footer'); ?>
  15. <?php wp_footer(); ?>
  16. </body>
  17. </html>