first import
This commit is contained in:
19
sites/all/themes/omega/alpha/templates/block.tpl.php
Normal file
19
sites/all/themes/omega/alpha/templates/block.tpl.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* Alpha's theme implementation to display a block.
|
||||
*/
|
||||
?>
|
||||
<div<?php print $attributes; ?>>
|
||||
<div class="block-inner clearfix">
|
||||
<?php print render($title_prefix); ?>
|
||||
<?php if ($block->subject): ?>
|
||||
<h2<?php print $title_attributes; ?>><?php print $block->subject; ?></h2>
|
||||
<?php endif; ?>
|
||||
<?php print render($title_suffix); ?>
|
||||
|
||||
<div<?php print $content_attributes; ?>>
|
||||
<?php print $content ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
24
sites/all/themes/omega/alpha/templates/html.tpl.php
Normal file
24
sites/all/themes/omega/alpha/templates/html.tpl.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* Alpha's theme implementation to display the basic html structure of a single
|
||||
* Drupal page.
|
||||
*/
|
||||
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
|
||||
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
|
||||
<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; ?>>
|
||||
<head profile="<?php print $grddl_profile; ?>">
|
||||
<?php print $head; ?>
|
||||
<title><?php print $head_title; ?></title>
|
||||
<?php print $styles; ?>
|
||||
<?php print $scripts; ?>
|
||||
</head>
|
||||
<body<?php print $attributes;?>>
|
||||
<div id="skip-link">
|
||||
<a href="#main-content" class="element-invisible element-focusable"><?php print t('Skip to main content'); ?></a>
|
||||
</div>
|
||||
<?php print $page_top; ?>
|
||||
<?php print $page; ?>
|
||||
<?php print $page_bottom; ?>
|
||||
</body>
|
||||
</html>
|
19
sites/all/themes/omega/alpha/templates/page.tpl.php
Normal file
19
sites/all/themes/omega/alpha/templates/page.tpl.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* Alpha's theme implementation to display a single Drupal page.
|
||||
*/
|
||||
?>
|
||||
<div<?php print $attributes; ?>>
|
||||
<?php if (isset($page['header'])) : ?>
|
||||
<?php print render($page['header']); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (isset($page['content'])) : ?>
|
||||
<?php print render($page['content']); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (isset($page['footer'])) : ?>
|
||||
<?php print render($page['footer']); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
11
sites/all/themes/omega/alpha/templates/region.tpl.php
Normal file
11
sites/all/themes/omega/alpha/templates/region.tpl.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* Alpha's theme implementation to display a region.
|
||||
*/
|
||||
?>
|
||||
<div<?php print $attributes; ?>>
|
||||
<div<?php print $content_attributes; ?>>
|
||||
<?php print $content; ?>
|
||||
</div>
|
||||
</div>
|
9
sites/all/themes/omega/alpha/templates/section.tpl.php
Normal file
9
sites/all/themes/omega/alpha/templates/section.tpl.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* Alpha's theme implementation to display a section.
|
||||
*/
|
||||
?>
|
||||
<div<?php print $attributes; ?>>
|
||||
<?php print $content; ?>
|
||||
</div>
|
11
sites/all/themes/omega/alpha/templates/zone.tpl.php
Normal file
11
sites/all/themes/omega/alpha/templates/zone.tpl.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* Alpha's theme implementation to display a zone.
|
||||
*/
|
||||
?>
|
||||
<?php if ($wrapper): ?><div<?php print $attributes; ?>><?php endif; ?>
|
||||
<div<?php print $content_attributes; ?>>
|
||||
<?php print $content; ?>
|
||||
</div>
|
||||
<?php if ($wrapper): ?></div><?php endif; ?>
|
Reference in New Issue
Block a user