| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html <?php language_attributes(); ?>>
- <head>
- <!-- Google tag (gtag.js) -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=AW-10996061145"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
-
- gtag('config', 'AW-10996061145');
- </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>
|