This repository has been archived by the owner on Aug 20, 2020. It is now read-only.
forked from rsdoiel/bibtex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bibmerge.tmpl
40 lines (39 loc) · 1.74 KB
/
bibmerge.tmpl
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
<!DOCTYPE html>
<html>
<head>
<title>Merge BibTeX files</title>
<link rel="stylesheet" href="../css/site.css" />
</head>
<body>
<header>
<a href="http://library.caltech.edu"><img src="../assets/liblogo.gif" alt="Caltech Library logo"></a>
</header>
<nav>
{{ .nav }}
</nav>
<section>
<h2>BibTeX One</h2>
<div><label>Paste your BibTeX</label><br /><textarea id="inputA-bibtex" cols="80", rows="30"></textarea></div>
<h2>BibTeX Two</h2>
<div><label>Paste your BibTeX</label><br /><textarea id="inputB-bibtex" cols="80", rows="30"></textarea></div>
<select id="merge-type-bibtex">
<option value="join">Join</option>
<option value="diff">Difference (asymmetric diff)</option>
<option value="intersect">Intersection</option>
<option value="exclusive">Exclusive (symmetric diff)</option>
<select>
<div><button id="merge-bibtex">Merge</button></div>
<div><label>Copy the results</label><br /><textarea id="output-bibtex" readonly cols="80" rows="30"></textarea></div>
<div><label>Example command line usage</label><br /><input id="cmd-example-bibtex" type="text" readonly value="" size="80" /></div>
</section>
<footer>
<span><h1><A href="http://caltech.edu">Caltech</a></h1></span>
<span>© 2016 <a href="https://www.library.caltech.edu/copyright">Caltech library</a></span>
<address>1200 E California Blvd, Mail Code 1-32, Pasadena, CA 91125-3200</address>
<span>Phone: <a href="tel:+1-626-395-3405">(626)395-3405</a></span>
<span><a href="mailto:[email protected]">Email Us</a></span>
</footer>
<script src="webapp.js"></script>
<script src="bibmerge.js"></script>
</body>
</html>