-
Notifications
You must be signed in to change notification settings - Fork 0
/
organization-view.xhtml
108 lines (108 loc) · 5.15 KB
/
organization-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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?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">{gr:legalName}</title>
</head>
<body resource="?this">
<div class="container">
<div class="page-header">
<h1>{gr:legalName} <small>{vcard:organizaton-unit}</small></h1>
</div>
<div class="row">
<div class="col-sm-8">
<div class="row">
<div class="col-sm-12">
<h2>Contact information</h2>
<pre class="wiki" property="vcard:note" content="?note">{?note}</pre>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<p>
<a href="{vcard:url}" target="_blank">{vcard:url}</a>
</p>
<p>
<a href="mailto:{vcard:workEmail}" property="vcard:workEmail" target="_blank" />
</p>
<p>
<a href="tel:{vcard:workTel}" target="_blank" property="vcard:workTel" />
</p>
</div>
<div class="col-sm-4">
<p rel="vcard:adr" resource="?adr">
{vcard:street-address} {vcard:extended-address} {vcard:post-office-box}<br />
{vcard:locality} {vcard:region}<br />
{vcard:postal-code}<br />
{vcard:country-name}<br />
</p>
</div>
<div class="col-sm-4">
<div id="img" rel="foaf:depiction" resource="?img" style="margin: 0px 1ex 1ex 0px;max-width:40em">
<a href="{?img}" class="view"><img src="{?img}?small" style="max-height:100%;max-width:40em" /></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<aside class="optional well well-small">
<h4>Business Units</h4>
<ul rel="directory:hasOrganizationalUnit" class="sorted">
<li about="?unit" typeof="vcard:Organization">
<a href="{?unit}" class="asc">{vcard:organization-unit}</a>
</li>
</ul>
</aside>
<aside class="optional well well-small">
<h4>Contact</h4>
<ul rev="vcard:org" class="sorted">
<li about="?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 about="?service" typeof="gr:ProductOrServiceModel">
<a href="{?service}" class="asc" property="rdfs:label" />
</li>
</ul>
</aside>
<aside class="optional well well-small">
<h4>Deployments <a about="Project" href="Project" onclick="return calli.createResource(event,'?create='+this.href)"><span class="glyphicon glyphicon-plus" /></a></h4>
<ul rev="directory:hasParticipant" class="sorted">
<li about="?project" typeof="foaf:Project">
<a href="{?project}" class="asc" property="rdfs:label" />
</li>
</ul>
</aside>
<aside class="optional well well-small">
<h4>Experience</h4>
<ul class="sorted">
<li rel="vcard:category" resource="?category">
<a href="{?category}?whatlinkshere" class="asc">{skos:prefLabel}</a>
</li>
</ul>
</aside>
<aside class="aside hidden-logout">
<p>To add contacts, experience, products, services, or projects click on the edit tab at the top</p>
</aside>
</div>
</div>
</div>
</body>
</html>