forked from lytics/pathforajs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage.html
29 lines (28 loc) · 812 Bytes
/
image.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Personalization Example</title>
<script type="text/javascript" src="http://c.lytics.io/static/pathfora.min.js"></script>
<link rel="stylesheet" href="../custom-css/custom-css.css">
<link rel="stylesheet" href="image.css">
</head>
<body>
<script type="text/javascript">
// Mock the Lytics JStag. You won't need this code, instead just
// load the actual Lytics JStag for your account:
// https://activate.getlytics.com/connect
window.lio = {
data: {
// mock the user segment membership
segments: ["iphone_feature_campaign"]
},
loaded: true,
account: {
id: "notreal"
}
};
</script>
<script type="text/javascript" src="image.js"></script>
</body>
</html>