ComingSoon.php
34 lines
| 1 | <!DOCTYPE html> |
| 2 | <html <?php language_attributes(); ?>> |
| 3 | <head> |
| 4 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
| 6 | <title><?php echo esc_html__( 'Coming Soon', 'hostinger' ); ?></title> |
| 7 | <style> |
| 8 | html *:not(body):not(.hsr-coming-soon-body > *) { |
| 9 | display: none; |
| 10 | } |
| 11 | |
| 12 | .hsr-coming-soon-body { |
| 13 | display: flex !important; |
| 14 | } |
| 15 | </style> |
| 16 | </head> |
| 17 | <body class="hostinger"> |
| 18 | <div class="hsr-coming-soon-body"> |
| 19 | <img alt="logo" class="hsr-logo" |
| 20 | src="<?php echo esc_url( HOSTINGER_PLUGIN_URL . 'assets/images/logo-black.svg' ); ?>"> |
| 21 | <img alt="illustration" class="hsr-coming-soon-illustration" |
| 22 | src="<?php echo esc_url( HOSTINGER_PLUGIN_URL . 'assets/images/illustration.png' ); ?>"> |
| 23 | <h3> |
| 24 | <?php echo esc_html__( 'Coming Soon', 'hostinger' ); ?> |
| 25 | </h3> |
| 26 | <p> |
| 27 | <?php echo esc_html__( 'New WordPress website is being built and will be published soon', 'hostinger' ); ?> |
| 28 | </p> |
| 29 | </div> |
| 30 | |
| 31 | <?php wp_footer(); ?> |
| 32 | </body> |
| 33 | </html> |
| 34 |