forked from jlord/vermeer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (77 loc) · 2.37 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Vermeer Goals</title>
<!-- <link rel="icon" type="image/png" href="favicon.png"> -->
<!-- <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'> --> <link rel="stylesheet" href="assets/style.css">
<script src="assets/local-data.json"></script>
<script src="assets/js/jquery.js"></script>
<script src="assets/js/sheetsee.js"></script>
</head>
<body>
<header>
<div class="wrapper">
<h1><a href="index.html">Vermeer Goals</a></h1>
<nav>
<ul class="no-style">
<li><a href="about.html">About</a></li>
<li><a href="">Visits</a></li>
<li><a href="">Stats</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="wrapper">
<div id="paintings">
</div>
</div>
</main>
<footer>
<div class="wrapper">
<nav>
<h4 class="float-left inline-block"><a href="index.html">Vermeer Goals</a></h4>
<ul class="no-style">
<li><a href="about.html">About</a></li>
<li><a href="">Visits</a></li>
<li><a href="">Stats</a></li>
</ul>
</nav>
</div>
</footer>
</body>
<script id="paintings_template" type="text/html">
{{#rows}}
<div class="painting-container">
<div class="painting-info half">
<h3>{{ Location }} <span class="no-bold">{{ City }}</span></h3>
<div class="painting-details">
<p>{{ Paintings }}</p>
<br>
<p class="meta">
<b>Visit—</b>{{Date}} <a href="">Details</a>
<br>
{{#Notes}}
<span class="meta"><b>Notes—</b>{{Notes}}
{{/Notes}}
</p>
</div>
</div>
<div class="painting-img half">
<img src="{{Photo}}">
</div>
</div>
{{/rows}}
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
var html = Sheetsee.ich.paintings_template({'rows': vermeers})
$('#paintings').html(html)
})
</script>
</html>