-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathswordit.html
24 lines (21 loc) · 848 Bytes
/
swordit.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
<html>
<head>
<script type="text/javascript" src="/static/jquery.js"></script>
<script type="text/javascript" src="/static/jquery.base64.min.js"></script>
<script type="text/javascript" src="/static/swordit.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".publication").swordit()
});
</script>
</head>
<body>
<h1>Richard's amazing publication page</h1>
<div class="publication">
<strong>Title</strong>: <span class="title">SWORDv2 UI in JavaScript</span><br>
<strong>Abstract</strong>: <span class="abstract">A way of uploading full text through any web page and associating it
with the publication metadata</span><br>
<strong>Author</strong>: <span class="author">Richard Jones</span><br>
</div>
</body>
</html>