Last active
August 29, 2015 14:17
-
-
Save halgatewood/543ec0fd2a5563ac01ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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