weather_compact.tpl.php in Weather 6.5
Same filename and directory in other branches
1 theme call to weather_compact.tpl.php
- theme_weather_theming in ./
weather.module - Custom theme function for preprocessing the weather block output
File
weather_compact.tpl.phpView source
<div class="weather">
<p>
<strong><?php
print $weather['real_name'];
?>:</strong>
<?php
print $weather['condition'];
if (isset($weather['temperature'])) {
print ', ' . $weather['temperature'];
}
?>
</p>
</div>