-
Notifications
You must be signed in to change notification settings - Fork 1
/
note-view.xhtml
34 lines (34 loc) · 1.26 KB
/
note-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
<?xml version="1.0" encoding="UTF-8" ?>
<html version="XHTML+RDFa 1.0" xmlns="http://www.w3.org/1999/xhtml"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:meeting="http://localhost:8080/schema/">
<head>
<title resource="?this">{dcterms:date}</title>
</head>
<body resource="?this">
<div class="container">
<div class="page-header">
<h1><time datetime="{dcterms:date}" /></h1>
<script type="text/javascript">
$('h1 time[datetime]').text(calli.parseDateTime("{dcterms:date}").toLocaleString());
</script>
</div>
<p property="rdfs:comment" />
<ul>
<li rel="dcterms:hasPart" resource="?topic">
<a href="?topic">{rdfs:label}</a>
<span rel="meeting:state" resource="?state">
[<span title="{skos:definition}">
{skos:prefLabel}
</span>]
</span>
</li>
</ul>
</div>
</body>
</html>