-
Notifications
You must be signed in to change notification settings - Fork 0
/
browse.html
34 lines (34 loc) · 1.57 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
<?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>
<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?view=timeline">Timeline</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">
<!-- data-template-sort-options="title,author,origDate,origPlace" -->
<div data-template="browse:show-hits" data-template-sort-options="title,author"/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>