Files
ionic-framework/demos/weather/current-weather.html
2015-09-09 15:49:06 -05:00

9 lines
438 B
HTML

<div id="current-weather" *ng-if="current">
<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>{{highTemp}}</span>&deg;</span>
<span id="temp-lo"><i class="icon ion-arrow-down-c"></i> <span>{{lowTemp}}</span>&deg;</span>
</h5>
<h1 class="current-temp"><span>{{currentTemp}}</span>&deg;</h1>
</div>