Skip to content

Instantly share code, notes, and snippets.

@halgatewood
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save halgatewood/543ec0fd2a5563ac01ed to your computer and use it in GitHub Desktop.

Select an option

Save halgatewood/543ec0fd2a5563ac01ed to your computer and use it in GitHub Desktop.
<div class="awesome-weather-forecast awe_days_<?php echo $weather->forecast_days ?> awecf">
<!-- TODAYS WEATHER -->
<div class="awesome-weather-forecast-day">
<?php if($weather->show_icons) { ?><i class="<?php echo $weather->data['current']['icon']; ?>">"></i><?php } ?>
<div class="awesome-weather-forecast-day-temp"><?php echo $weather->data['current']['temp']; ?><sup><?php echo $weather->units_display; ?></sup></div>
<div class="awesome-weather-forecast-day-abbr">TODAY</div>
</div>
<?php foreach( $weather_forecast as $forecast ) { ?>
<div class="awesome-weather-forecast-day">
<?php if($weather->show_icons) { ?><i class="<?php echo $forecast->icon; ?>"></i><?php } ?>
<div class="awesome-weather-forecast-day-temp"><?php echo $forecast->temp; ?><sup><?php echo $weather->units_display; ?></sup></div>
<div class="awesome-weather-forecast-day-abbr"><?php echo $forecast->day_of_week; ?></div>
</div>
<?php } ?>
</div><!-- /.awesome-weather-forecast -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment