-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_collection.html
More file actions
44 lines (43 loc) · 2.06 KB
/
_collection.html
File metadata and controls
44 lines (43 loc) · 2.06 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<div xmlns="http://www.w3.org/1999/xhtml">
<div class="row">
<div class="col-md-9">
<div>
<strong>Name: </strong>
<span data-template="app:format-search-collection-url" data-template-key="collection.id"/>
<div data-template="helpers:model-comment" data-template-key="document-name"/>
</div>
<div>
<strong>Title: </strong>
<span data-template="helpers:model-value" data-template-key="collection.title"/>
</div>
<div>
<strong>Type: </strong>
<span data-template="helpers:model-value" data-template-key="coltype"/>
<span data-template="helpers:if-model-key" data-template-key="embargo">(embargo duration : <span data-template="helpers:model-value" data-template-key="embargo"/>)</span>
</div>
<div>
<strong>Creator name: </strong>
<span data-template="helpers:model-value" data-template-key="collection.datapi"/>
</div>
</div>
<div class="col-md-3">
<div data-template="app:collection-stats" data-template-key="collection.id">
From <span data-template="app:date-multiline" data-template-key="from-date"/> to
<span data-template="app:date-multiline" data-template-key="to-date"/>
</div>
</div>
</div>
<div>
<strong>Description: </strong>
<div style="white-space: pre-wrap; height: 200px; overflow-y: auto;" class="well">
<span data-template="helpers:model-subcontent" data-template-key="collection.description"/>
</div>
</div>
<div data-template="helpers:if-model-key" data-template-key="collection.article">
<strong>Articles: </strong>
<ul class="list-group">
<li data-template="helpers:render" data-template-partial="_article.html" data-template-key="collection.article" data-template-as="article"/>
</ul>
</div>
</div>