You are here

weather_compact.tpl.php in Weather 7

Same filename and directory in other branches
  1. 6.5 weather_compact.tpl.php

Compact template for the weather module.

File

weather_compact.tpl.php
View source
<?php

/**
 * @file
 * Compact template for the weather module.
 */
?>
<div class="weather">
  <p>
    <strong><?php

print $weather->real_name;
?>:</strong>
    <?php

print $weather->condition;
if (isset($weather->temperature)) {
  print ', ' . $weather->temperature;
}
?>
  <?php

if (isset($weather->station)) {
  ?>
    <small>
      <?php

  print t('Location of this weather station:');
  ?><br />
      <?php

  print $weather->station;
  ?>
    </small>
    <br />
  <?php

}
?>
  </p>
</div>