securesite-page.tpl.php in Secure Site 7.2
Same filename and directory in other branches
Template for Secure Site pages. Taken from modules/system/html.tpl.php
See also
2 theme calls to securesite-page.tpl.php
- _securesite_denied in ./
securesite.inc - Deny access to users who are not authorized to access secured pages.
- _securesite_dialog in ./
securesite.inc - Display authentication dialog and send password reset mails.
File
theme/securesite-page.tpl.phpView source
<?php
/**
* @file
* Template for Secure Site pages. Taken from modules/system/html.tpl.php
*
* @see template_preprocess_page()
*/
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php
print $language->language;
?>" version="XHTML+RDFa 1.0" dir="<?php
print $language->dir;
?>"<?php
print $rdf_namespaces;
?>>
<head profile="<?php
print $grddl_profile;
?>">
<?php
print $head;
?>
<title><?php
print $head_title;
?></title>
<?php
print $styles;
?>
<?php
print $scripts;
?>
</head>
<body>
<?php
if ($logo) {
?>
<a href="<?php
print $front_page;
?>" title="<?php
print t('Home');
?>" rel="home" id="logo">
<img src="<?php
print $logo;
?>" alt="<?php
print t('Home');
?>" />
</a>
<?php
}
?>
<?php
print $messages;
?>
<?php
print $content;
?>
</body>
</html>