-
Notifications
You must be signed in to change notification settings - Fork 0
/
service-view.xhtml
67 lines (67 loc) · 2.71 KB
/
service-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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:calli="http://callimachusproject.org/rdf/2009/framework#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vcard="http://www.w3.org/2006/vcard/ns#"
xmlns:gr="http://purl.org/goodrelations/v1#"
xmlns:directory="http://dir.w3.org/rdf/2012/directory/">
<head>
<title resource="?this">{rdfs:label}</title>
</head>
<body resource="?this">
<div class="container">
<div class="page-header">
<h1 property="rdfs:label" />
</div>
<div class="row">
<div class="col-sm-8">
<pre class="wiki" property="rdfs:comment" content="?comment">{?comment}</pre>
<p rel="foaf:page" resource="?page">
Homepage: <a href="?page" target="_blank">{?page}</a>
</p>
<div id="img" rel="foaf:depiction" resource="?img">
<a href="{?img}" class="view"><img src="{?img}?small" /></a>
</div>
</div>
<div rel="gr:hasManufacturer" resource="?org" class="col-sm-4">
<aside>
<p class="lead"><a href="{?org}">{gr:legalName} {vcard:organization-unit}</a></p>
</aside>
<aside class="optional well well-small">
<h4>Contact</h4>
<ul rev="vcard:org" class="sorted">
<li resource="?person" typeof="foaf:Person">
<a href="{?person}" class="asc">{foaf:name}</a>
<span property="vcard:role" content="?role">
({?role})
</span>
</li>
</ul>
</aside>
<aside class="optional well well-small">
<h4>Products, services, or projects</h4>
<ul rev="gr:hasManufacturer" class="sorted">
<li resource="?service" typeof="gr:ProductOrServiceModel">
<a href="{?service}" class="asc" property="rdfs:label" />
</li>
</ul>
</aside>
<aside class="optional well well-small">
<h4>Deployments</h4>
<ul rev="directory:hasParticipant" class="sorted">
<li resource="?project" typeof="foaf:Project">
<a href="{?project}" class="asc" property="rdfs:label" />
</li>
</ul>
</aside>
</div>
</div>
</div>
</body>
</html>