-
Notifications
You must be signed in to change notification settings - Fork 0
/
school-view.xhtml
executable file
·41 lines (41 loc) · 1.71 KB
/
school-view.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
32
33
34
35
36
37
38
39
40
41
<?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:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:school="http://education.data.gov.uk/def/school/"
xmlns:vcard="http://www.w3.org/2006/vcard/ns#">
<head>
<title resource="?this">{rdfs:label}</title>
</head>
<body resource="?this">
<div class="container">
<div class="page-header">
<h1>{school:establishmentName} <small>{school:establishmentNumber}</small></h1>
</div>
<div class="row">
<div class="col-sm-8 lead">
<h2>Information</h2>
<pre class="wiki" property="rdfs:comment" />
<div rel="school:administrativeWard" resource="?admin"><a href="?admin">{rdfs:label}</a></div>
<div>
<span rel="school:establishmentStatus" resource="?status">{rdfs:label}</span>
<span rel="school:phaseOfEducation">{rdfs:label}</span>
<span property="school:statutoryLowAge" /> - <span property="school:statutoryHighAge" />
<span rel="school:typeOfEstablishment">{rdfs:label}</span>
</div>
</div>
<div class="col-sm-4">
<aside rel="school:vcard" class="aside lead">
<h2>Address</h2>
<address rel="vcard:adr">
<span property="vcard:street-address"/><br/>
<span property="vcard:locality"/><br/>
<span property="vcard:postal-code"/>
</address>
</aside>
</div>
</div>
</div>
</body>
</html>