Skip to content

Instantly share code, notes, and snippets.

@barraponto
Created March 25, 2014 03:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barraponto/9754756 to your computer and use it in GitHub Desktop.
Save barraponto/9754756 to your computer and use it in GitHub Desktop.
<?php
$img_path = base_path() . drupal_get_path('theme', 'southland2013') . '/img/';
$img_url = $img_path . 'logo-expertise-landing-' . $data->tid . '.png';
?>
<div class="expertise-landing equal-height-container clearfix">
<?php if ($data->tid != 7): ?>
<div class="expertise-landing-image equal-height-element">
<img src="<?php print $img_url;?>" alt="<?php print $row->name_1; ?>">
</div>
<?php endif; ?>
<div class="expertise-landing-description equal-height-element">
<h1><?php print $row->name_1; ?></h1>
<?php print $row->description; ?>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment