securesite-page.tpl.php in Secure Site 6.2
Same filename and directory in other branches
Template for Secure Site pages.
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.
*
* @see template_preprocess_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>
<title><?php
print $head_title;
?></title>
<?php
print $head;
?>
<link type="text/css" rel="stylesheet" media="all" href="<?php
print $base_path . drupal_get_path('module', 'securesite') . '/theme/securesite.css';
?>" />
<?php
print $scripts;
?>
</head>
<body>
<?php
print $messages;
print $content;
?>
</body>
</html>