forked from srophe/britishLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowse.html
40 lines (40 loc) · 1.85 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
38
39
40
<?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 top-padding">
<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?lang=en&alpha-filter-value=A&collection=places">Places</a>
</li>
<li>
<a href="browse.html?;collection=persons">Persons</a>
</li>
<li>
<a href="browse.html?lang=en&alpha-filter-value=A&collection=bibl">Works Cited</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>