Projet

Général

Profil

Paste
Télécharger (2,71 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / UrbanSolice / templates / html.tpl.php @ 87dbc3bf

1
<?php
2
// $Id: html.tpl.php,v 1.6 2010/11/24 03:30:59 webchick Exp $
3

    
4
/**
5
 * @file
6
 * Default theme implementation to display the basic html structure of a single
7
 * Drupal page.
8
 *
9
 * Variables:
10
 * - $css: An array of CSS files for the current page.
11
 * - $language: (object) The language the site is being displayed in.
12
 *   $language->language contains its textual representation.
13
 *   $language->dir contains the language direction. It will either be 'ltr' or 'rtl'.
14
 * - $rdf_namespaces: All the RDF namespace prefixes used in the HTML document.
15
 * - $grddl_profile: A GRDDL profile allowing agents to extract the RDF data.
16
 * - $head_title: A modified version of the page title, for use in the TITLE
17
 *   tag.
18
 * - $head_title_array: (array) An associative array containing the string parts
19
 *   that were used to generate the $head_title variable, already prepared to be
20
 *   output as TITLE tag. The key/value pairs may contain one or more of the
21
 *   following, depending on conditions:
22
 *   - title: The title of the current page, if any.
23
 *   - name: The name of the site.
24
 *   - slogan: The slogan of the site, if any, and if there is no title.
25
 * - $head: Markup for the HEAD section (including meta tags, keyword tags, and
26
 *   so on).
27
 * - $styles: Style tags necessary to import all CSS files for the page.
28
 * - $scripts: Script tags necessary to load the JavaScript files and settings
29
 *   for the page.
30
 * - $page_top: Initial markup from any modules that have altered the
31
 *   page. This variable should always be output first, before all other dynamic
32
 *   content.
33
 * - $page: The rendered page content.
34
 * - $page_bottom: Final closing markup from any modules that have altered the
35
 *   page. This variable should always be output last, after all other dynamic
36
 *   content.
37
 * - $classes String of classes that can be used to style contextually through
38
 *   CSS.
39
 *
40
 * @see template_preprocess()
41
 * @see template_preprocess_html()
42
 * @see template_process()
43
 */
44
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
45
  "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
46
<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; ?>>
47

    
48
<head profile="<?php print $grddl_profile; ?>">
49
  <?php print $head; ?>
50
  <title><?php print $head_title; ?></title>
51
  <?php print $styles; ?>
52
  <?php print $scripts; ?>
53
</head>
54
<body class="<?php print $classes; ?>" <?php print $attributes;?>>
55
  <div id="skip-link">
56
    <a href="#main-content" class="element-invisible element-focusable"><?php print t('Skip to main content'); ?></a>
57
  </div>
58
  <?php print $page_top; ?>
59
  <?php print $page; ?>
60
  <?php print $page_bottom; ?>
61
</body>
62
</html>