maintenance-countdown-page.tpl.php in Maintenance Countdown 6
Same filename and directory in other branches
Theme implementation to display a Maintenance Countdown page while off-line.
All the available variables are mirrored in maintenance-page.tpl.php. Some may be left blank but they are provided for consistency.
You still can use these preprecess in your theme:
See also
File
maintenance-countdown-page.tpl.phpView source
<?php
/**
* @file
*
* Theme implementation to display a Maintenance Countdown page while off-line.
*
* All the available variables are mirrored in maintenance-page.tpl.php.
* Some may be left blank but they are provided for consistency.
*
* You still can use these preprecess in your theme:
* @see template_preprocess()
* @see template_preprocess_maintenance_page()
* @see mcd_preprocess_maintenance_page()
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php
print $language->language;
?>" lang="<?php
print $language->language;
?>" dir="<?php
print $language->dir;
?>">
<head>
<?php
print $head;
?>
<title><?php
print $head_title;
?></title>
<?php
print $styles;
?>
<?php
print $scripts;
?>
</head>
<body class="<?php
print $body_classes;
?>">
<div id="page">
<div id="header" class="clear-block">
<div id="logo-title">
<?php
if (!empty($logo)) {
?>
<a href="<?php
print $base_path;
?>" title="<?php
print t('Home');
?>" rel="home" id="logo">
<img src="<?php
print $logo;
?>" alt="<?php
print t('Home');
?>" />
</a>
<?php
}
?>
<div id="name-and-slogan">
<?php
if (!empty($site_name)) {
?>
<h1 id="site-name">
<a href="<?php
print $base_path;
?>" title="<?php
print t('Home');
?>" rel="home"><span><?php
print $site_name;
?></span></a>
</h1>
<?php
}
?>
<?php
if (!empty($site_slogan)) {
?>
<div id="site-slogan"><?php
print $site_slogan;
?></div>
<?php
}
?>
</div> <!-- /name-and-slogan -->
</div> <!-- /logo-title -->
<?php
if (!empty($header)) {
?>
<div id="header-region">
<?php
print $header;
?>
</div>
<?php
}
?>
</div> <!-- /header -->
<div id="container" class="clear-block">
<div id="main" class="column"><div id="main-squeeze">
<div id="content">
<?php
if (!empty($title)) {
?><h1 class="title" id="page-title"><?php
print $title;
?></h1><?php
}
?>
<?php
if (!empty($messages)) {
print $messages;
}
?>
<div id="content-content" class="clear-block">
<?php
print $content;
?>
</div> <!-- /content-content -->
</div> <!-- /content -->
<div id="countdown_dashboard" class="clear-block">
<div class="dash weeks_dash">
<span class="dash_title"><?php
print t('weeks');
?></span>
<div class="digit"></div>
<div class="digit"></div>
</div>
<div class="dash days_dash">
<span class="dash_title"><?php
print t('days');
?></span>
<div class="digit"></div>
<div class="digit"></div>
</div>
<div class="dash hours_dash">
<span class="dash_title"><?php
print t('hours');
?></span>
<div class="digit"></div>
<div class="digit"></div>
</div>
<div class="dash minutes_dash">
<span class="dash_title"><?php
print t('minutes');
?></span>
<div class="digit"></div>
<div class="digit"></div>
</div>
<div class="dash seconds_dash">
<span class="dash_title"><?php
print t('seconds');
?></span>
<div class="digit"></div>
<div class="digit"></div>
</div>
</div> <!-- /countdown_dashboard -->
<?php
if ($time_up_message || $reload_button) {
?>
<div id="complete_message" class="clear-block">
<?php
if ($time_up_message) {
print $time_up_message;
}
?>
<?php
if ($reload_button) {
print $reload_button;
}
?>
</div>
<?php
}
?>
</div></div> <!-- /main-squeeze /main -->
</div> <!-- /container -->
<?php
if ($footer_message) {
?>
<div id="footer-message"><?php
print $footer_message;
?></div>
<?php
}
?>
</div> <!-- /page -->
</body>
</html>