29 lines
727 B
HTML
29 lines
727 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>SofiaTraffic EZ Table</title>
|
|
</head>
|
|
<body>
|
|
<h1 style="text-align: center;">
|
|
SofiaTraffic EZ Table
|
|
</h1>
|
|
<form style="text-align: center;">
|
|
<input type="text" name="find" style="width: 20em; height: 2em;"/>
|
|
<input type="submit" value="Find" style="width: 10em; height: 2em;"/>
|
|
</form>
|
|
<table style="margin-left: auto; margin-right: auto;">
|
|
{{ range .Favourites }}
|
|
<tr style="height: 2em; vertical-align: center;">
|
|
<td style="width: 30em; text-align: center;">
|
|
<a href="/{{ .Code }}">
|
|
{{ .Name }} ({{ .Code }})
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</table>
|
|
</body>
|
|
</html>
|