first import
This commit is contained in:
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>
|
Reference in New Issue
Block a user