-
Notifications
You must be signed in to change notification settings - Fork 8
/
recline-embed.tpl.php
42 lines (41 loc) · 1.28 KB
/
recline-embed.tpl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* @file
* Default theme implementation to display the basic html structure of an
* embedded Drupal page.
*
* Variables:
* - $css: An array of CSS files for the current page.
* - $language: (object) The language the site is being displayed in.
* $language->language contains its textual representation.
* $language_dir contains the language direction. It will either be 'ltr' or
* 'rtl'.
* - $base_url: The base URL of the Drupal installation.
* - $title: A modified version of the page title, for use in the TITLE tag.
* - $head: Markup for the HEAD section (including meta tags, keyword tags, and
* so on).
* - $styles: Style tags necessary to import all CSS files for the page.
* - $scripts: Script tags necessary to load the JavaScript files and settings
* for the page.
* - $content: View content
*
* @see template_preprocess_views_share_html()
*
* @ingroup themeable
*/
?>
<!doctype html>
<html lang="<?php print $language->language; ?>" dir="<?php print $language_dir; ?>">
<head>
<?php print $head; ?>
<title><?php print $title; ?></title>
<base href="<?php print $base_url; ?>">
<?php print $styles; ?>
<?php print $scripts; ?>
</head>
<body>
<div id="recline-embeded">
<?php print $content; ?>
</div>
</body>
</html>