1{{ define "index" }}
2{{ template "_head" }}
3<table role="grid">
4 <thead>
5 <tr>
6 <th scope="col">ID</th>
7 <th scope="col">Title</th>
8 <th scope="col">Output</th>
9 <th scope="col"></th>
10 </tr>
11 </thead>
12 <tbody>
13 {{ range . }}
14 <tr>
15 <td>{{ .ID }}</td>
16 <td>{{ .Link }}</td>
17 <td>{{ .Output_folder }}</td>
18 <td>
19 <a href="entries/{{ .ID }}" role="button">Edit</a>
20 <a href="#" onclick="deleteEntry({{ .ID }})" role="button" class="secondary">Delete</a>
21 </td>
22 </tr>
23 {{ end }}
24 </tbody>
25</table>
26<a href="/entries" role="button">Create</a>
27{{ template "_footer" }}
28{{ end }}