mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-26 08:13:34 +08:00
9 lines
438 B
HTML
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>°</span>
|
|
<span id="temp-lo"><i class="icon ion-arrow-down-c"></i> <span>{{lowTemp}}</span>°</span>
|
|
</h5>
|
|
<h1 class="current-temp"><span>{{currentTemp}}</span>°</h1>
|
|
</div>
|