forked from BLE-LTER/Zotero-JavaScript-Search-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (98 loc) · 5.2 KB
/
index.html
File metadata and controls
111 lines (98 loc) · 5.2 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<title>MCM LTER Bibliography</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link href="search.css" rel="stylesheet" type="text/css">
<script src="cors.js"></script>
<script src="pagination.js"></script>
<script src="zotero.js"></script>
</head>
<body>
<div class="container">
<h1>MCM LTER Bibliography</h1>
<p>
This searchable database includes all MCM-supported publications and key foundational literature. Results may take a moment to load. PDFs are available for most publications, which can be
viewed or downloaded by anyone by who joins the <a href="https://www.zotero.org/groups/2636203/lter-mcm" target="_blank" rel="noopener">LTER-MCM Zotero group</a>. Here's how:
</p>
<ol>
<li>Create a free Zotero account at <a href="https://www.zotero.org" target="_blank" rel="noopener">zotero.org</a> (click <strong>Register</strong> at the top right).</li>
<li>Log in and visit the <a href="https://www.zotero.org/groups/2636203/lter-mcm" target="_blank" rel="noopener">LTER-MCM Zotero group</a>.</li>
<li>Click <strong>Join</strong> (button on the right side).</li>
<li>Once approved, you'll have access to PDFs via the <a href="https://www.zotero.org/groups/2636203/lter-mcm/library" target="_blank" rel="noopener">group library</a>.</li>
</ol>
<p>
To search, enter a term below (e.g., title or author). You can also filter by item type and change the sort order.
<em>Please note that this search tool uses the Zotero API and supports only basic citation fields; it does not search abstracts, keyword tags, or full text.</em>
To browse by keyword, use the Zotero <a href="https://www.zotero.org/groups/2636203/lter-mcm/library" target="_blank" rel="noopener">group library</a> and select tags
from the sidebar.
</p>
<p>
For more advanced features, such as full-text search and integration with word processors for citation management, we
recommend using the <a href="https://www.zotero.org/download/" target="_blank" rel="noopener">Zotero desktop app</a>. Refer to the
<a href="https://www.zotero.org/support/" target="_blank" rel="noopener">Zotero documentation</a> for further details.
</p>
<p>
</p>
<form id="zoteroSearchForm" name="zoteroSearchForm">
<table>
<tr>
<td>
<div style="float:left;margin-right:20px;">
<input type="hidden" id="sort" name="sort" value="date">
<label for="q"><strong>Search:</strong></label>
<input class="search-input" name="q" id="q" placeholder="Enter search term" type="text">
</div>
</td>
<td>
<div style="float:left;margin-right:20px;">
<label for="search-type"><strong>Item Type:</strong></label>
<select id="itemType" name="itemType">
<option value="-attachment || note">Any</option>
<option value="journalArticle">Journal Article</option>
<option value="thesis">Thesis</option>
<option value="book">Book</option>
<option value="bookSection">Book Section</option>
<option value="conferencePaper">Conference Paper</option>
<option value="magazineArticle">Magazine Article</option>
<option value="report">Report</option>
</select>
</div>
</td>
<td>
<div style="float:left;margin-right:20px;" id="sortDiv">
<label for="visibleSort"><strong>Sort by:</strong></label>
<select name="sort" id="visibleSort">
<option value="date">Publication Date</option>
<option value="dateAdded">Date Added</option>
<option value="itemType">Item Type</option>
<option value="creator">Author (a-z)</option>
<option value="title">Title (a-z)</option>
</select>
</div>
</td>
<td>
<div id="searchButtonDiv">
<input type="submit" value="Search" name="searchButton" id="searchButton">
</div>
</td>
</tr>
</table>
</form>
<br>
<div class="loading" id="loading-div">
<i class="fas fa-spinner fa-pulse fa-3x fa-fw"></i>
<span class="sr-only">Loading...</span>
</div>
<div class="resultCount" id="resultCount"></div>
<div class="pagination" id="paginationTop"></div>
<div id="searchResults"></div>
<div class="pagination" id="paginationBot"></div>
</div>
</body>
</html>