This repository has been archived by the owner on Feb 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.html
61 lines (60 loc) · 2.61 KB
/
test.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
<html>
<head>
<script src="./compiled/api/1.0.0.js"></script>
<script src="./compiled/templating/1.0.0.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" type="text/css" rel="stylesheet"/>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script>
Traitify.setHost("api-sandbox.traitify.com");
Traitify.setPublicKey("gglvv58easpesg9ajbltavb3gr");
Traitify.setVersion("v1");
Traitify.templating.initialize()
</script>
</head>
<body>
<template name="tf-personality-types" class="col-sm-4" assessment-id="6815f30c-d58d-41c5-af9d-e11f0208e176" style="background-color:#{{colorLight}}" only-types="1">
<div class="col-sm-1">
<img src="{{badge.large}}" class="col-sm-12" />
</div>
<div class="col-sm-9">
<div id="test" class="col-sm-12 name" data-name="{{name}}">{{score}}</div>
<div id="test-{{index}}" class="col-sm-12">{{name}}</div>
<div class="col-sm-12">{{name.uppercase}}</div>
<div class="col-sm-12">{{name.camelcase}}</div>
<div class="col-sm-12">{{name.lowercase}}</div>
<div class="col-sm-12">{{badge.small}}</div>
<div class="col-sm-12">{{badge.medium}}</div>
<div class="col-sm-12">{{badge.large}}</div>
<div class="col-sm-12">{{index}}</div>
</div>
</template>
<template name="tf-personality-types" class="col-sm-4" assessment-id="6815f30c-d58d-41c5-af9d-e11f0208e176" style="background-color:#{{colorLight}}" except-types="1,2,3">
<div class="col-sm-1">
<img src="{{badge.large}}" class="col-sm-12" />
</div>
<div class="col-sm-9">
<div id="test" class="col-sm-12 name" data-name="{{name}}">{{score}}</div>
<div id="test-{{index}}" class="col-sm-12">{{name}}</div>
<div class="col-sm-12">{{name.uppercase}}</div>
<div class="col-sm-12">{{name.camelcase}}</div>
<div class="col-sm-12">{{name.lowercase}}</div>
<div class="col-sm-12">{{badge.small}}</div>
<div class="col-sm-12">{{badge.medium}}</div>
<div class="col-sm-12">{{badge.large}}</div>
<div class="col-sm-12">{{index}}</div>
</div>
</template>
<style>
.widget .name, .widget .score{
color:#fff;
}
.tf-type-Analyzer{
background-color:#000;
}
</style>
<script>
Builder = Traitify.templating.initialize()
</script>
</body>
</html>