forked from ktklayc/mtg-card-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 936 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en-EN" xml:lang="en-EN" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MTG Card View Demo</title>
<script src="mtg-card-view.js"></script>
<script src="jquery-1.9.0.min.js"></script>
<script>
$(document).ready( function() {
// Just call it once to create links.
createMtgCardViewLinks();
});
</script>
</head>
<body>
<div>Just add links with the setting either the card name or the multiverse ID.</div>
<div>
<a class="mtg-card-view-link" mtg-multiverse-id="129643" href="">Multiverse ID 129643</a>
</div>
<div>
<a class="mtg-card-view-link" mtg-card-name="Island" href="">Island</a>
</div>
<div>
<a class="mtg-card-view-link" href="" mtg-card-name="Guardian Seraph">Guardian Seraph</a>
</div>
<div>
<a class="mtg-card-view-link" href="" mtg-card-name="Sigil Of The Empty Throne">Sigil Of The Empty Throne</a>
</div>
</body>
</html>