forked from wsalesky/srophe-eXist-app
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbrowse.html
37 lines (37 loc) · 1.72 KB
/
browse.html
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
<?xml version="1.0" encoding="UTF-8"?>
<div xmlns="http://www.w3.org/1999/xhtml" data-template="templates:surround" data-template-with="templates/page.html" data-template-at="content">
<div class="main-content-block">
<h1>Browse</h1>
<p class="indent">Listings of records.</p>
<div data-template="browse:get-all" data-template-element="tei:titleStmt/tei:title[@level='a']">
<!-- Example limits data to places collection, see example entry in repo-config.xml -->
<!-- <div data-template="browse:get-all" data-template-collection="places">-->
<div class="tabbable">
<!-- Browse Tabs Configurable. -->
<ul class="nav nav-tabs" id="nametabs">
<li>
<a href="browse.html" default="default">All</a>
</li>
<li>
<a href="browse.html?alpha-filter-value=A&element=tei:place/tei:placeName">Places</a>
</li>
<li>
<a href="browse.html?alpha-filter-value=A&element=tei:person/tei:persName">Persons</a>
</li>
<li>
<a href="browse.html?view=map">Map</a>
</li>
</ul>
<!-- Browse Content -->
<div class="tab-content">
<div class="tab-pane active">
<div class="row">
<div data-template="browse:show-hits"/>
</div>
<div data-template="app:pageination"/>
</div>
</div>
</div>
</div>
</div>
</div>