-
Notifications
You must be signed in to change notification settings - Fork 994
Expand file tree
/
Copy pathtemplate.html
More file actions
30 lines (26 loc) · 879 Bytes
/
template.html
File metadata and controls
30 lines (26 loc) · 879 Bytes
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
<html>
<head>
<title>Yo, yo, yo!</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/tabletop.js/1.1.0/tabletop.min.js"></script>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" href="css/sss.css">
</head>
<body>
<!-- Your HTML Here -->
<script id="" type="text/html">
// template if you so desire!
</script>
<script type="text/javascript">
// document.addEventListener('DOMContentLoaded', function() {
// var gData
// var URL = "YOURSPREADSHEETSKEYHERE"
// Tabletop.init( { key: URL, callback: myData, simpleSheet: true } )
// })
// function myData(data) {
// All the sheetsee things you want to do!
// }
</script>
</body>
</html>