From 69f0119c7262602af46fd6a80e4558089835fa01 Mon Sep 17 00:00:00 2001 From: Jayaram R Pai Date: Thu, 31 Jul 2014 17:13:33 +0530 Subject: initial commit --- templates/page-front.tpl.php.backup | 352 ++++++++++++++++++++++++++++++++++++ 1 file changed, 352 insertions(+) create mode 100755 templates/page-front.tpl.php.backup (limited to 'templates/page-front.tpl.php.backup') diff --git a/templates/page-front.tpl.php.backup b/templates/page-front.tpl.php.backup new file mode 100755 index 0000000..8f2668a --- /dev/null +++ b/templates/page-front.tpl.php.backup @@ -0,0 +1,352 @@ +language contains its textual representation. + * $language->dir contains the language direction. It will either be 'ltr' or 'rtl'. + * - $head_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. + * - $classes: String of classes that can be used to style contextually through + * CSS. It should be placed within the
tag. When selecting through CSS + * it's recommended that you use the body tag, e.g., "body.front". It can be + * manipulated through the variable $classes_array from preprocess functions. + * The default values can be one or more of the following: + * - front: Page is the home page. + * - not-front: Page is not the home page. + * - logged-in: The current viewer is logged in. + * - not-logged-in: The current viewer is not logged in. + * - node-type-[node type]: When viewing a single node, the type of that node. + * For example, if the node is a "Blog entry" it would result in "node-type-blog". + * Note that the machine name will often be in a short form of the human readable label. + * - page-views: Page content is generated from Views. Note: a Views block + * will not cause this class to appear. + * - page-panels: Page content is generated from Panels. Note: a Panels block + * will not cause this class to appear. + * The following only apply with the default 'sidebar_first' and 'sidebar_second' block regions: + * - two-sidebars: When both sidebars have content. + * - no-sidebars: When no sidebar content exists. + * - one-sidebar and sidebar-first or sidebar-second: A combination of the + * two classes when only one of the two sidebars have content. + * - $node: Full node object. Contains data that may not be safe. This is only + * available if the current page is on the node's primary url. + * - $menu_item: (array) A page's menu item. This is only available if the + * current page is in the menu. + * + * Site identity: + * - $front_page: The URL of the front page. Use this instead of $base_path, + * when linking to the front page. This includes the language domain or prefix. + * - $logo: The path to the logo image, as defined in theme configuration. + * - $site_name: The name of the site, empty when display has been disabled + * in theme settings. + * - $site_slogan: The slogan of the site, empty when display has been disabled + * in theme settings. + * - $mission: The text of the site mission, empty when display has been disabled + * in theme settings. + * + * Navigation: + * - $search_box: HTML to display the search box, empty if search has been disabled. + * - $primary_links (array): An array containing the Primary menu links for the + * site, if they have been configured. + * - $secondary_links (array): An array containing the Secondary menu links for + * the site, if they have been configured. + * - $breadcrumb: The breadcrumb trail for the current page. + * + * Page content (in order of occurrence in the default page.tpl.php): + * - $title: The page title, for use in the actual HTML content. + * - $messages: HTML for status and error messages. Should be displayed prominently. + * - $tabs: Tabs linking to any sub-pages beneath the current page (e.g., the + * view and edit tabs when displaying a node). + * - $help: Dynamic help text, mostly for admin pages. + * - $content: The main content of the current page. + * - $feed_icons: A string of all feed icons for the current page. + * + * Footer/closing data: + * - $footer_message: The footer message as defined in the admin settings. + * - $closure: Final closing markup from any modules that have altered the page. + * This variable should always be output last, after all other dynamic content. + * + * Helper variables: + * - $classes_array: Array of html class attribute values. It is flattened + * into a string within the variable $classes. + * + * Regions: + * - $content_top: Items to appear above the main content of the current page. + * - $content_bottom: Items to appear below the main content of the current page. + * - $navigation: Items for the navigation bar. + * - $sidebar_first: Items for the first sidebar. + * - $sidebar_second: Items for the second sidebar. + * - $header: Items for the header region. + * - $footer: Items for the footer region. + * - $page_closure: Items to appear below the footer. + * + * The following variables are deprecated and will be removed in Drupal 7: + * - $body_classes: This variable has been renamed $classes in Drupal 7. + * + * @see template_preprocess() + * @see template_preprocess_page() + * @see zen_preprocess() + * @see zen_process() + */ +?> + + + + +