I am currently stuck on step 2/3. I looked at most of the other topics that had the same problem as me, but they don’t work for me.
<!-- datetime -->
<div class="weekday col-xs-4">
<p>
{{ day.datetime | date }}
</p>
</div>
<!-- icon -->
<div class="weather col-xs-3">
<p>
<img ng-src= "{{day.icon}}">
</p>
</div>
<div class="col-xs-1"></div>
<!-- high -->
<div class="high col-xs-2">
<p>
{{ day.high }}°
</p>
</div>
</div>
<!-- low -->
<div class="low col-xs-2">
<p>
{{ day.low }}°
</p>
</div>
This is the code that I typed and it doesn’t work. Please help me with this.