index.php 741 B

12345678910111213141516171819202122232425
  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(); ?> style="background-color: #010d19;">
  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. <script>
  15. document.addEventListener('DOMContentLoaded', function () {
  16. }, false);
  17. </script>
  18. <?php do_action('get_footer'); ?>
  19. <?php wp_footer(); ?>
  20. </body>
  21. </html>