-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
executable file
·50 lines (39 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<title>dati.gov.it - Zoomable treemap</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=Titillium+Web' rel='stylesheet'
type='text/css'>
<link rel="stylesheet" href="treemap.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="treemap-container" data-file="flare.json"></div>
<div class="wrap">
<div class="breadcrumbs-wrap">
<div class="breadcrums"></div>
<div class="treemap-wrap">
<div class="treemap"></div>
</div>
</div>
</div>
<script id="tile_template" type="text/x-handlebars-template">
<div class="test-wrap" data-id="{{id-unico}}" style="top: 60px; left: 20px">
<div class="rect">
<h2>{{titolo}}</h2>
<hr />
<div class="bottom">
<h4>{{descrittore}}<span>{{numero-elementi-interni}}</span></h4>
</div>
<div class="circ">
<img src="{{icona}}" alt="" />
</div>
</div>
</div>
</script>
<!-- javascript -->
<script src="js/bundle.js"></script>
</body>
</html>