-
Notifications
You must be signed in to change notification settings - Fork 0
/
ward-list.xhtml
executable file
·31 lines (31 loc) · 1.03 KB
/
ward-list.xhtml
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
<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="/callimachus/template.xsl"?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:admingeo="http://data.ordnancesurvey.co.uk/ontology/admingeo/">
<head>
<title>Ward Listing</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-4">
<table class="table table-striped">
<thead>
<tr>
<th><h2>Ward</h2></th>
</tr>
</thead>
<tbody class="sorted">
<tr resource="?ward">
<td>
<a href="?ward" class="asc"><span class="lead">{rdfs:label}</span></a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>