Files
ionic-framework/ionic/components/app/test/weather/current-weather.html
Max Lynch e9e989ff49 Weather
2015-07-02 09:34:20 -05:00

9 lines
478 B
HTML

<div id="current-weather" *ng-if="current && current.currently">
<h5><weather-icon icon="current.icon" id="current-icon"></weather-icon> {{current.currently.summary}}</h5>
<h5>
<span id="temp-hi"><i class="icon ion-arrow-up-c"></i> <span ng-bind="highTemp"></span>&deg;</span>
<span id="temp-lo"><i class="icon ion-arrow-down-c"></i> <span ng-bind="lowTemp"></span>&deg;</span>
</h5>
<h1 class="current-temp"><span ng-bind="currentTemp"></span>&deg;</h1>
</div>