You are here

oa-space-banner.tpl.php in Open Atrium Appearance 7.2

Provides template for space banner

$banner - Banner image. $text - Banner text

File

templates/oa-space-banner.tpl.php
View source
<?php

/**
 * @file
 * Provides template for space banner
 *
 * $banner - Banner image.
 * $text - Banner text
 */
?>

<?php

if (!empty($banner)) {
  ?>
<div class='oa-banner <?php

  print $banner_class;
  ?>' data-width='<?php

  print $width;
  ?>' data-height='<?php

  print $height;
  ?>'>
  <?php

  print $banner;
  ?>
  <?php

  if (!empty($slogan)) {
    ?>
  <div class='<?php

    print $banner_slogan_class;
    ?>'>
    <?php

    print $slogan;
    ?>
  </div>
  <?php

  }
  ?>
  <?php

  if (!empty($text)) {
    ?>
  <div class='<?php

    print $banner_text_class;
    ?>'>
    <?php

    print $text;
    ?>
  </div>
  <?php

  }
  ?>
</div>
<?php

}