# hostinger/2.2.2/includes/Views/ComingSoon.php

Hostinger Tools, version 2.2.2. 32 lines.

- Page: https://pluginprobe.com/plugins/hostinger/2.2.2/code/includes/Views/ComingSoon.php
- Raw: https://pluginprobe.com/plugins/hostinger/2.2.2/raw/includes/Views/ComingSoon.php
- Modified: 2024-04-15T13:46:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/hostinger/2.2.2/code/includes/Views/ComingSoon.php#L10-L20`.

```php
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>">
	<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
	<title><?php echo esc_html__( 'Coming Soon', 'hostinger' ); ?></title>
	<?php if ( ( get_option( 'hostinger_maintenance_mode', 0 ) ) ) : ?>
		<style>
			html *:not(body):not(.hsr-coming-soon-body > *) {
				display: none;
			}

			.hsr-coming-soon-body {
				display: flex !important;
			}
		</style>
	<?php endif; ?>
</head>
<body class="hostinger">
<div class="hsr-coming-soon-body">
	<img alt="logo" class="hsr-logo"
		src="<?php echo esc_url( HOSTINGER_PLUGIN_URL . 'assets/images/logo-black.svg' ); ?>">
	<img alt="illustration" class="hsr-coming-soon-illustration"
		src="<?php echo esc_url( HOSTINGER_PLUGIN_URL . 'assets/images/illustration.png' ); ?>">
	<h3><?php echo esc_html__( 'Coming Soon', 'hostinger' ); ?></h3>
	<p><?php echo esc_html__( 'New WordPress website is being built and will be published soon', 'hostinger' ); ?></p>
</div>

<?php wp_footer(); ?>
</body>
</html>

```
