Initial commit
This commit is contained in:
60
templates/suspended.php
Normal file
60
templates/suspended.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/**
|
||||
* @package ogre-suspension
|
||||
* @author cleverogre
|
||||
* @version 1.0.0
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
use Ogre\Suspension;
|
||||
use Ogre\Suspension\Template;
|
||||
|
||||
?><!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="Cache-control" content="no-cache">
|
||||
<meta http-equiv="Pragma" content="no-cache">
|
||||
<meta http-equiv="Expires" content="0">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title><?php Template::the_title(); ?></title>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<figure>
|
||||
<a href="https://cleverogre.com/"><?php Template::the_image(); ?></a>
|
||||
</figure>
|
||||
<h1 class="screen-reader-text"><?php Suspension::esc_html_e('CleverOgre'); ?></h1>
|
||||
<p><?php Suspension::esc_html_e('Purveyors of Fine Pensacola Websites Since 2007'); ?></p>
|
||||
<h3><?php Suspension::esc_html_e('Well hey there, fancy meeting you here!'); ?></h3>
|
||||
<p><?php Suspension::esc_html_e('Looks like you found one of our sites that\'s not quite ready yet for public viewing. That\'s okay, happens to the best of us.'); ?></p>
|
||||
<p><?php printf(
|
||||
Suspension::esc_html__('May we suggest heading on over to our website, %s, to learn more about our company. You can see %s, %s and %s.'),
|
||||
'<a href="https://cleverogre.com/">cleverogre.com</a>',
|
||||
sprintf(
|
||||
'<a href="https://cleverogre.com/you/">%s</a>',
|
||||
Suspension::esc_html__('what we do')
|
||||
),
|
||||
sprintf(
|
||||
'<a href="https://cleverogre.com/us/">%s</a>',
|
||||
Suspension::esc_html__('who we are')
|
||||
),
|
||||
sprintf(
|
||||
'<a href="https://cleverogre.com/them/">%s</a>',
|
||||
Suspension::esc_html__('how we help our clients be awesome')
|
||||
)
|
||||
); ?></p>
|
||||
<p><?php printf(
|
||||
Suspension::esc_html__('Of course, if you have any questions for the Ogres you can always use any of the methods listed on our %s.'),
|
||||
sprintf(
|
||||
'<a href="https://cleverogre.com/contact/">%s</a>',
|
||||
Suspension::esc_html__('contact page')
|
||||
)
|
||||
); ?></p>
|
||||
<p><?php Suspension::esc_html_e('Thanks for stopping by!'); ?></p>
|
||||
</main>
|
||||
<link rel="stylesheet" href="<?php echo esc_url(Suspension::get_url('assets/style.css')); ?>" type="text/css" media="all">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Passion+One:400,700,900" type="text/css" media="all">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,700" type="text/css" media="all">
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user