| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html <?php language_attributes(); ?>>
- <head>
- <!-- Google tag (gtag.js) -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=GT-55XG6M7"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
-
- gtag('config', 'GT-55XG6M7');
- </script>
-
- <title><?php wp_title(); ?></title>
- <meta charset="<?php bloginfo( 'charset' ); ?>">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="prefetch" url="resource-url" />
-
- <?php wp_head(); ?>
- </head>
- <body>
- <div id="content" class="site-content" style="display:none">
-
- <?php
-
- if ( have_posts() ) {
-
- if ( is_home() && ! is_front_page() ) {
- echo '<h1>' . single_post_title( '', false ) . '</h1>';
- }
-
- while ( have_posts() ) {
-
- the_post();
-
- if ( is_singular() ) {
- the_title( '<h1>', '</h1>' );
- } else {
- the_title( '<h2><a href="' . esc_url( get_permalink() ) . '">', '</a></h2>' );
- }
-
- the_content();
- }
- }
-
- ?>
-
- </div>
-
- <div id="wp-app"></div>
-
- <?php wp_footer(); ?>
- </body>
- </html>
|