-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex_bak.html
More file actions
96 lines (78 loc) · 4.07 KB
/
index_bak.html
File metadata and controls
96 lines (78 loc) · 4.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="book-solid.svg" type="image/x-icon">
<title>Vidvaan</title>
<!-- <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> -->
<!-- <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/rainabba/jquery-table2excel/1.1.0/dist/jquery.table2excel.min.js"></script>
<script src="https://www.kryogenix.org/code/browser/sorttable/sorttable.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/2.0.0/FileSaver.min.js"></script>
<script lang="javascript" src="https://cdn.sheetjs.com/xlsx-0.20.3/package/dist/xlsx.full.min.js"></script>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/rainabba/jquery-table2excel/1.1.0/dist/jquery.table2excel.min.js"></script> -->
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<nav class="nav">
<h1>Vidvaan Publications </h1>
</nav>
</header>
<main>
<div class="section1">
<div class="sec">
<!-- <div class="search">
<h2>Vidvaan Publications Search</h2>
</div> -->
<div class="qurry">
<div class="ser">
<label for="topic" class="heading">Search</label>
<br>
<input type="text" class="search" id="topic" placeholder="Enter the search topic">
<button class="btn1" onclick="work()"> Search</button>
</div>
<!-- Filter and Download controls container, initially hidden -->
<div id="filter-download-container" style="display: none;">
<div class="filter">
<label for="startYear" class="heading">Filter</label>
<br>
<input type="number" class="year" id="startYear" placeholder="Start Year" min="1900"
max="2100" onchange="applyYearFilter()">
<input type="number" class="year" id="endYear" placeholder="End Year" min="1900" max="2100"
onchange="applyYearFilter()">
<button class="btn1" onclick="applyYearFilter()"> Filter Year</button>
<input type="text" id="authorName" class="year" placeholder="Enter author name"
oninput="applyNameFilter()">
<button class="btn1" onclick="applyNameFilter()"> Filter Name</button>
</div>
<div class="exel">
<label class="heading">Download</label>
<br>
<button class="btn2" onclick="exportExcel()"> Download Excel</button>
</div>
</div>
</div>
</div>
</div>
</main>
<div class="container">
<div id="publications" class="results">
<!-- Results will be displayed here -->
</div>
</div>
<div id="publications" class="container">
</div>
<script src="output-doc/excel.js"></script>
<script src="script.js"></script>
<script src="filters/filter.js"></script>
<script src="repos/arxiv.js"></script>
<script src="repos/dblp.js"></script>
<script src="repos/openalex.js"></script>
<script src="repos/openlibrary.js"></script>
</body>
</html>