24 lines
486 B
HTML
24 lines
486 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{template "head.html" .}} <!-- Include header template -->
|
|
|
|
<body>
|
|
{{template "header.html" .}}
|
|
|
|
<h1>Trainers</h1>
|
|
<a href="/">Back to Home</a>
|
|
<a href="/trainers/add">Add Trainer</a>
|
|
<table border="1">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Email</th>
|
|
</tr>
|
|
{{ range . }}
|
|
<tr>
|
|
<td>{{ .Name }}</td>
|
|
<td>{{ .Email }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</table>
|
|
</body>
|
|
</html>
|