-
Notifications
You must be signed in to change notification settings - Fork 1
/
Sidebar.html
51 lines (48 loc) · 1.87 KB
/
Sidebar.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
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<?!= include('Stylesheet') ?>
</head>
<body>
<div id="header" class="sidebar fixed-top">
<div id="search-container" class="form-group inline-form">
<input id="eexcess-search" placeholder="Search" aria-label="<?!= msg('SEARCHBAR_SEARCH') ?>" type="text"/>
<button class="action" id="btn-search"><?!= msg('SEARCHBAR_SEARCH') ?></button>
</div>
<div class="tab-container">
<ul class="eexcess-tabs">
<li id="all-tab">
<a><?!= msg('SEARCH_RESULT_LIST_ALL') ?></a>
</li>
<li id="image-tab">
<a title="<?!= msg('SEARCH_RESULT_LIST_IMAGES_TOOLTIP') ?>"><?!= msg('SEARCH_RESULT_LIST_IMAGES') ?></a>
</li>
<li id="cultural-tab">
<a title="<?!= msg('SEARCH_RESULT_LIST_CULTURAL_TOOLTIP') ?>"><?!= msg('SEARCH_RESULT_LIST_CULTURAL') ?></a>
</li>
<li id="scholarly-tab">
<a title="<?!= msg('SEARCH_RESULT_LIST_SCHOLARLY_TOOLTIP') ?>"><?!= msg('SEARCH_RESULT_LIST_SCHOLARLY') ?></a>
</li>
</ul>
<div id="settings-button" class="image-button">
<img title="<?!= msg('SETTINGS') ?>" src="https://www.dimis.fim.uni-passau.de/eexcess/settings.png">
</div>
</div>
</div>
<div id="results" class="sidebar form-group"></div>
<div class="sidebar bottom">
<div class="block"></div>
<a href="http://eexcess.eu/" title="EEXCESS" target="_blank">
<div class="branding-container">
<img alt="Add-on logo" class="logo" src="https://www.dimis.fim.uni-passau.de/eexcess/eexcess_Logo_neu1.jpg">
</div>
<div class="branding-text">
<span class="gray"><?!= msg('BRANDING_TEXT') ?></span>
</div>
</a>
</div>
<?!= include('SearchResultList') ?>
<?!= include('Scripts') ?>
</body>
</html>