May 2018
Intermediate to advanced
512 pages
11h 3m
English
We need to start by implementing the rough scaffolding.
Consider the current state of the template:
src/app/current-weather/current-weather.component.html 1 <div *ngIf="current"> 2 <div> 3 <span>{{current.city}}, {{current.country}}</span> 4 <span>{{current.date | date:'fullDate'}}</span> 5 </div> 6 <div> 7 <img [src]='current.image'> 8 <span>{{current.temperature | number:'1.0-0'}}℉</span> 9 </div>10 <div>11 {{current.description}}12 </div>13 </div>
Let's go through the file step by step and update it:
Read now
Unlock full access