busdepartures/index.html

24 lines
456 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
2023-08-13 14:58:04 +00:00
<link rel="stylesheet" href="/static/css/busdepartures.css">
<title>Busvertrektijden</title>
</head>
<body>
{{ range .Quays }}
<article>
<h2>{{ .Name }}</h2>
<p>{{ .Town }}</p>
{{ range .Departures }}
<dl>
<dt>{{ .RouteShortName }} | {{ .StopHeadsign }}</dt>
2023-08-13 13:01:17 +00:00
<dd><time>{{ formatTime .DepartureTime }}</time></dd>
</dl>
{{ end }}
</article>
{{ end }}
</body>
</html>