PluginProbe
Hostinger Tools / 3.0.76
Hostinger Tools v3.0.76
3.0.77 3.0.76 3.0.75 3.0.74 3.0.73 3.0.72 3.0.71 3.0.70 3.0.69 3.0.68 3.0.67 3.0.66 1.8.1 1.8.2 1.8.3 1.9.1 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.4 All 108 releases
hostinger / includes / Views / ComingSoon.php

ComingSoon.php in Hostinger Tools 3.0.76, at includes/Views/ComingSoon.php

34 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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