Projet

Général

Profil

Paste
Télécharger (1,12 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / simplecorp / html.tpl.php @ b9383c72

1
<?php print $doctype; ?>
2
<html lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"<?php print $rdf->version . $rdf->namespaces; ?>>
3
    <head<?php print $rdf->profile; ?>>
4
        <?php print $head; ?>
5
        <title><?php print $head_title; ?></title>
6
        <?php print $styles; ?>
7

    
8
        <?php if (theme_get_setting('responsive_respond','simplecorp')): global $base_path; global $base_root; ?>
9
        <!--[if lt IE 9]>
10
        <script src="<?php print $base_root . $base_path . path_to_theme() ?>/js/respond.min.js"></script>
11
        <![endif]-->
12
        <?php endif; ?>
13

    
14
        <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
15

    
16
        <?php print $scripts; ?>
17
    </head>
18
    <body class="<?php print $classes; ?> custom-background" <?php print $attributes;?>>
19
        <div id="skip-link">
20
          <a href="#main-content" class="element-invisible element-focusable"><?php print t('Skip to main content'); ?></a>
21
        </div>
22
        <?php print $page_top; ?>
23
        <?php print $page; ?>
24
        <?php print $page_bottom; ?>
25
    </body>
26
</html>