old-silvrgit/lib/jade/today.jade

40 lines
1021 B
Plaintext
Raw Normal View History

2016-02-11 11:40:10 +00:00
doctype html
html(lang="en")
head
2016-02-14 14:41:30 +00:00
title
Today
2016-02-11 11:40:10 +00:00
body
h1 Today
2016-02-14 14:41:30 +00:00
.stuff !{data.today}
.weather
2016-02-11 11:40:10 +00:00
h2 Weather
p Currently:
= ' ' + data.weather.currently
p Later:
= ' ' + data.weather.today
if data.weather.alerts.length > 0
h3 ALERT
2016-02-11 11:40:10 +00:00
each alert in data.weather.alerts
p(style="color:red;")= alert.title
p= alert.description
.travel
2016-02-11 12:16:02 +00:00
h2 Travel
2016-02-11 11:40:10 +00:00
if data.trains.data.length > 0
each alert in data.trains.data
strong= alert.title
p= alert.description
2016-02-11 12:16:02 +00:00
else
p Nothing to report.
2016-02-12 10:23:43 +00:00
.history
h2 Today in history
if data.history.length > 0
each line in data.history
p= line
else
p Nothing of note happened today.
2016-02-11 11:40:10 +00:00