This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
wp_load_translations_early(); | |
$protocol = wp_get_server_protocol(); | |
header( "$protocol 503 Service Unavailable", true, 503 ); | |
header( 'Content-Type: text/html; charset=utf-8' ); | |
header( 'Retry-After: 30' ); | |
?> | |
<!DOCTYPE html> | |
<html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
header('HTTP/1.1 503 Service Temporarily Unavailable'); | |
header('Retry-After: Sat, 8 Oct 2011 18:27:00 GMT'); //How long before you estimate your website will be back. | |
?> | |
<!DOCTYPE HTML> | |
<html> | |
<head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="address" itemscope itemtype="http://schema.org/Organization"> | |
<ul itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> | |
<li class="boldcopyright" itemprop="name">Creare Communications</li> | |
<li itemprop="streetAddress">Boughton Leigh House</li> | |
<li itemprop="addressLocality">Rugby</li> | |
<li itemprop="addressRegion">Warwickshire </li> | |
<li itemprop="postalCode">CV21 1HL</li> | |
</ul> | |
</div> |