-
Notifications
You must be signed in to change notification settings - Fork 4
/
service-list.html
executable file
·44 lines (39 loc) · 1.35 KB
/
service-list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: default
date: 2018-06-30 11:52:52 +0100
title: Services by the Home Office
---
<main id="content" role="main">
<div class="grid-row">
<div class="column-full" >
{% include nav-breadcrumbs.html %}
</div>
</div>
<div class="grid-row ">
<div class="column-two-thirds">
<h1 class="heading-large">Services by the Home Office <span class="heading-secondary">{{ site.data.public | size }} records</span></h1>
<p class="lede">Services delivered by the Home Office and related organisations as an end user would know them. </p>
<p>If you'd like to suggest a service or a change to something listed here please email <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
<div class="grid-row ">
<div class="column-full">
<table id="service-list" class="table--striped">
<thead>
<th data-sort="int">ID</th>
<th data-sort="string">Name</th>
<th data-sort="string">Delivered by</th>
</thead>
<tbody>
{% for public in site.data.public %}
<tr class="">
<td>{{ forloop.index }}</td>
<td>{{ public.serviceName }}</td>
<td>{{ public.deliveredBy }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</main>