old-silvrgit/lib/jade/today.jade
2016-02-19 15:46:20 +00:00

53 lines
1.4 KiB
Plaintext

doctype html
html(lang="en")
head
title
Today
body
h1 Today
.stuff
| !{data.today}
.weather
h2 Weather
p Currently:
= ' ' + data.weather.currently
p Today:
= ' ' + data.weather.today
p Later:
= ' ' + data.weather.later
if data.weather.alerts.length > 0
h3 ALERT
each alert in data.weather.alerts
p(style="color:red;")= alert.title
p= alert.description
.travel
h2 Travel
if data.trains.data.length > 0
each alert in data.trains.data
strong= alert.title
p= alert.description
else
p Nothing to report.
.calendar
if data.cal.entries.length > 0
h2 Calendar
each line in data.cal.entries
p !{line.combined}
.history
h2 Today in history
if data.history.length > 0
each line in data.history
p= line
else
p Nothing of note happened today.
.tv
if data.tv.entries.length > 0
h2 Todays TV
each line in data.tv.entries
p !{line.combined}