root / htmltest / sites / all / themes / busy / templates / html.tpl.php @ 6c38d829
1 |
<?php
|
---|---|
2 |
|
3 |
/**
|
4 |
* @file
|
5 |
* Default theme implementation to display the basic html structure of a single
|
6 |
* Drupal page.
|
7 |
*
|
8 |
* Variables:
|
9 |
* - $css: An array of CSS files for the current page.
|
10 |
* - $language: (object) The language the site is being displayed in.
|
11 |
* $language->language contains its textual representation.
|
12 |
* $language->dir contains the language direction. It will either be 'ltr' or 'rtl'.
|
13 |
* - $rdf_namespaces: All the RDF namespace prefixes used in the HTML document.
|
14 |
* - $grddl_profile: A GRDDL profile allowing agents to extract the RDF data.
|
15 |
* - $head_title: A modified version of the page title, for use in the TITLE tag.
|
16 |
* - $head: Markup for the HEAD section (including meta tags, keyword tags, and
|
17 |
* so on).
|
18 |
* - $styles: Style tags necessary to import all CSS files for the page.
|
19 |
* - $scripts: Script tags necessary to load the JavaScript files and settings
|
20 |
* for the page.
|
21 |
* - $page_top: Initial markup from any modules that have altered the
|
22 |
* page. This variable should always be output first, before all other dynamic
|
23 |
* content.
|
24 |
* - $page: The rendered page content.
|
25 |
* - $page_bottom: Final closing markup from any modules that have altered the
|
26 |
* page. This variable should always be output last, after all other dynamic
|
27 |
* content.
|
28 |
* - $classes String of classes that can be used to style contextually through
|
29 |
* CSS.
|
30 |
*
|
31 |
* @see template_preprocess()
|
32 |
* @see template_preprocess_html()
|
33 |
* @see template_process()
|
34 |
*/
|
35 |
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" |
36 |
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
|
37 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" version="XHTML+RDFa 1.0" dir="<?php print $language->dir; ?>" |
38 |
<?php print $rdf_namespaces; ?>> |
39 |
<head profile="<?php print $grddl_profile; ?>"> |
40 |
<?php print $head; ?> |
41 |
<title><?php print $head_title; ?></title> |
42 |
<?php print $styles; ?> |
43 |
<?php print $scripts; ?> |
44 |
</head>
|
45 |
<body class="<?php print $classes; ?>" <?php print $attributes;?>> |
46 |
<div id="wrapper"> |
47 |
<div id="wrapper-inner-top"> |
48 |
<div id="wrapper-inner-bottom"> |
49 |
<div id="wrapper-inner-color-bar"> |
50 |
<div id="wrapper-inner-shadow-over-left"> |
51 |
<div id="wrapper-inner-shadow-over-right"> |
52 |
<div id="wrapper-inner-shadow-repeated-left"> |
53 |
<div id="wrapper-inner-shadow-top-left"> |
54 |
<div id="wrapper-inner-shadow-color-bar-left"> |
55 |
<div id="wrapper-inner-shadow-middle-left"> |
56 |
<div id="wrapper-inner-shadow-bottom-left"> |
57 |
<div id="wrapper-inner-shadow-repeated-right"> |
58 |
<div id="wrapper-inner-shadow-top-right"> |
59 |
<div id="wrapper-inner-shadow-color-bar-right"> |
60 |
<div id="wrapper-inner-shadow-middle-right"> |
61 |
<div id="wrapper-inner-shadow-bottom-right"> |
62 |
<div id="skip-link"> |
63 |
<a href="#main-content"><?php print t('Skip to main content'); ?></a> |
64 |
</div>
|
65 |
<?php print $page_top; ?> |
66 |
<?php print $page; ?> |
67 |
<?php print $page_bottom; ?> |
68 |
</div>
|
69 |
</div>
|
70 |
</div>
|
71 |
</div>
|
72 |
</div>
|
73 |
</div>
|
74 |
</div>
|
75 |
</div>
|
76 |
</div>
|
77 |
</div>
|
78 |
<div id="page_postfooter">Built by <a href="http://www.undpaul.de" title="undpaul Drupal development" rel="external">undpaul Drupal development</a></div> |
79 |
</div>
|
80 |
</div>
|
81 |
</div>
|
82 |
</div>
|
83 |
</div>
|
84 |
</div>
|
85 |
</body>
|
86 |
</html>
|