| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html <?php language_attributes(); ?>>
- <head>
- <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>
|