-
Notifications
You must be signed in to change notification settings - Fork 0
/
project-view.xhtml
71 lines (71 loc) · 2.86 KB
/
project-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
<?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:homepage" resource="?homepage">
Homepage: <a href="{?homepage}" target="_blank">{?homepage}</a>
</p>
<p rel="directory:availabilityLevel" resource="?level">
<p>Availability: {skos:prefLabel}</p>
</p>
<div id="img" rel="foaf:depiction" resource="?img">
<a href="{?img}" class="view">
<img src="{?img}?small" />
</a>
</div>
</div>
<div class="col-sm-4">
<aside class="sorted well well-sm">
<div rel="directory:hasParticipant" resource="?org">
<h4><a href="{?org}" class="asc">{gr:legalName} {vcard:organization-unit}</a></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>
</div>
</aside>
<aside class="optional well well-sm">
<h4>Industry or domain category</h4>
<ul class="sorted">
<li rel="directory:inIndustry" resource="?category">
<a href="{?category}" class="asc">{skos:prefLabel}</a>
</li>
</ul>
</aside>
<aside class="well well-sm">
<h4>Technology used</h4>
<ul class="sorted">
<li rel="directory:usedTechnology" resource="?technology">
<a href="{?technology}" class="asc">{skos:prefLabel}</a>
</li>
</ul>
</aside>
</div>
</div>
</div>
</body>
</html>