Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
Fix maintenance page HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
lusimeon authored and Lucas Simeon committed Aug 10, 2022
1 parent 56c4a1c commit 044a165
Showing 1 changed file with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@

<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title><?php bloginfo( 'name' ) . ( ! empty( get_bloginfo( 'description' ) ) ? '' . bloginfo( 'description' ) : '' ); ?></title>
<link rel="stylesheet" href="./wp-content/mu-plugins/studiometa-maintenance-mode/maintenance.css">
</head>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title><?php bloginfo( 'name' ) . ( ! empty( get_bloginfo( 'description' ) ) ? '' . bloginfo( 'description' ) : '' ); ?></title>
<link rel="stylesheet" href="/wp-content/mu-plugins/studiometa-maintenance-mode/maintenance.css">
</head>

<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<h1><?php esc_html_e( 'Site under maintenance' ); ?></h1>
</body>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<h1><?php esc_html_e( 'Site under maintenance' ); ?></h1>
</body>
</html>

0 comments on commit 044a165

Please sign in to comment.