Example #1
0
<?php 
}
?>
  
  <?php 
print render($title_prefix);
?>
  <?php 
if ($block->subject) {
    ?>
    <div class="title-accent">
			<h3 class = "widget-title" <?php 
    print $title_attributes;
    ?>
><?php 
    print _stability_cms_block_title($block->subject);
    ?>
</h3>
		</div>
  <?php 
}
?>
  <?php 
print render($title_suffix);
?>

  <?php 
print $content;
?>

<?php 
 * Field variables: for each field instance attached to the node a corresponding
 * variable is defined, e.g. $node->body becomes $body. When needing to access
 * a field's raw values, developers/themers are strongly encouraged to use these
 * variables. Otherwise they will have to explicitly specify the desired field
 * language, e.g. $node->body['en'], thus overriding any language negotiation
 * rule that was previously applied.
 *
 * @see template_preprocess()
 * @see template_preprocess_node()
 * @see template_process()
 */
if ($content['field_hide_title'][0]['#markup'] != 'Hide') {
    ?>
  <div class="title-accent">
    <h3><?php 
    print _stability_cms_block_title($title);
    ?>
</h3>
  </div>
<?php 
}
?>

<?php 
hide($content['comments']);
hide($content['field_page_type']);
hide($content['field_hide_title']);
hide($content['field_image']);
?>

<?php