Skip to content

Commit b8f8695

Browse files
authored
Add privacy links in embed footer (#183)
* move to types folder * add embed page w/privacy footer
1 parent 0873bd6 commit b8f8695

File tree

4 files changed

+58
-0
lines changed

4 files changed

+58
-0
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>SandDance</title>
8+
<link rel="stylesheet" type="text/css"
9+
href="https://unpkg.com/@msrvida/sanddance-embed@2/dist/css/sanddance-embed.css" />
10+
<link rel="stylesheet" type="text/css"
11+
href="https://unpkg.com/@msrvida/sanddance-explorer@2.2/dist/css/sanddance-explorer.css" />
12+
<style>
13+
body {
14+
display: grid;
15+
grid-template-rows: auto 0fr;
16+
}
17+
18+
#app {
19+
position: unset;
20+
}
21+
22+
footer {
23+
border-top: 1px solid #ccc;
24+
font-size: smaller;
25+
padding: 6px 1em;
26+
}
27+
</style>
28+
</head>
29+
30+
<body>
31+
<script src="https://unpkg.com/react@16/umd/react.production.min.js" crossorigin></script>
32+
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js" crossorigin></script>
33+
<script src="https://unpkg.com/deck.gl@6/deckgl.min.js"></script>
34+
<script src="https://unpkg.com/vega@5.8/build/vega.min.js"></script>
35+
<script src="https://unpkg.com/office-ui-fabric-react@6.204.4/dist/office-ui-fabric-react.js"></script>
36+
<script src="https://unpkg.com/@msrvida/sanddance-explorer@2.2/dist/umd/sanddance-explorer.js"></script>
37+
<script src="https://unpkg.com/@msrvida/sanddance-embed@2/dist/umd/sanddance-embed.js"></script>
38+
39+
<div id="app"></div>
40+
41+
<!--EMBED-->
42+
43+
<footer>
44+
<span>
45+
This site does not collect any personal information or use cookies.
46+
<a href="https://go.microsoft.com/fwlink/?LinkId=521839">Privacy & Cookies</a>
47+
</span>
48+
<span>
49+
<a href="https://www.microsoft.com/en-us/servicesagreement/">Terms of Use</a>
50+
</span>
51+
<span>
52+
©2020 Microsoft.
53+
</span>
54+
</footer>
55+
56+
</body>
57+
58+
</html>

0 commit comments

Comments
 (0)