mirror of
https://gitlab.silvrtree.co.uk/martind2000/old-silvrgit.git
synced 2025-01-10 23:45:07 +00:00
59 lines
1.8 KiB
Plaintext
59 lines
1.8 KiB
Plaintext
html(lang="en")
|
|
head
|
|
meta(charset='utf-8')
|
|
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}
|
|
.swedish
|
|
h2 Word of the day
|
|
p(style="font-weight:900;")= data.swedish.xml.words.word
|
|
p It is an #{data.swedish.xml.words.wordtype} which means '<em>#{data.swedish.xml.words.translation}</em>'.
|
|
p Example: #{data.swedish.xml.words.fnphrase}
|
|
p Translated: #{data.swedish.xml.words.enphrase}
|
|
.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}
|
|
|
|
|
|
|