This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Default theme implementation to display a region. | |
* | |
* Available variables: | |
* - $content: The content for this region, typically blocks. | |
* - $classes: String of classes that can be used to style contextually through | |
* CSS. It can be manipulated through the variable $classes_array from |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Default theme implementation to display a node. | |
* | |
* Available variables: | |
* - $title: the (sanitized) title of the node. | |
* - $content: An array of node items. Use render($content) to print them all, | |
* or print a subset such as render($content['field_example']). Use |