aboutsummaryrefslogtreecommitdiff
path: root/internal/webui/html/root.html
blob: 97441c8ddc9f9970f55c22835593bb321af43e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "title"}}Horaires des prochains trains à Crépieux la Pape{{ end }}
{{ template "base" . }}

{{ define "main" }}
<h3>Horaires des prochains trains à Crépieux la Pape</h3>
<table>
	<thead>
		<tr><th>Arrivée en gare</th><th>Direction</th></tr>
	</thead>
	<tbody>
		{{ range .Departures }}
		<tr{{ if .Odd }} style="color:#111111;"{{ end }}><td>{{ .Arrival }}</td><td>{{ .DisplayName }}</td></tr>
		{{ end }}
	</tbody>
</table>
{{ end }}