-
Notifications
You must be signed in to change notification settings - Fork 1
/
indexTest.html
173 lines (164 loc) · 8.14 KB
/
indexTest.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Talents</title>
<meta name="description" content="L'arbre des compétences du développement web">
<meta name="keywords" content="web design development rpg game talent skill">
</head>
<body>
<div class="ltIE9-hide">
<div data-bind="css: { open: isOpen }" class="page">
<header>
<img data-bind="click: toggle" src="img/logo.png" class="logo">
</header>
<div class="intro">
<div class="content">
<h2>Un arbre de talents
<br /> pour développeurs web</h2>
<p></p>
<h3></h3>
<button data-bind="click: toggle">Ouvrir l'arbre de talents »</button>
</div>
</div>
<div class="talent-tree">
<div class="who-made-this">
<p></p>
<hr/>
<div>
<p style="float:right;">Traduction et adaptation par
<a href="http://xalava.github.io/" target="_blank">Xavier</a>.</p>
<p style="float:left;"> Développement
<a href="http://www.352inc.com/" target="_blank">352</a> avec
<a href="http://www.jquery.com/" target="_blank">jQuery</a> et
<a href="http://www.knockoutjs.com/" target="_blank">Knockout</a>.</p>
</div>
</div>
<h2 class="start-helper" data-bind="css:{active:noPointsSpent}">Commencer ici!</h2>
<!--ko foreach: skills-->
<!--ko if: hasDependencies-->
<div data-bind="css: { 'can-add-points': canAddPoints, 'has-points': hasPoints, 'has-max-points': hasMaxPoints }, attr: { 'data-skill-id': id }"
class="skill">
<div data-bind="css: { active: dependenciesFulfilled }" class="skill-dependency"></div>
</div>
<!--/ko-->
<!--/ko-->
<!--ko foreach: skills-->
<div data-bind="css: { 'can-add-points': canAddPoints, 'has-points': hasPoints, 'has-max-points': hasMaxPoints }, attr: { 'data-skill-id': id }"
class="skill">
<div class="icon-container">
<div class="icon"></div>
</div>
<div class="frame">
<div class="tool-tip">
<h3 data-bind="text: title" class="skill-name"></h3>
<div data-bind="html: description" class="skill-description"></div>
<ul class="skill-links">
<!--ko foreach: links-->
<li>
<a data-bind="attr: { href: url }, click: function(){
_gaq.push(['_trackEvent',$parent.title, label, url]);
return true;
}, text: label" target="_blank"></a>
</li>
<!--/ko-->
</ul>
<hr data-bind="visible: currentRankDescription() || nextRankDescription()">
<div data-bind="if: currentRankDescription" class="current-rank-description">Current rank:
<span data-bind=" text: currentRankDescription"></span>
</div>
<div data-bind="if: nextRankDescription" class="next-rank-description">Next rank:
<span data-bind=" text: nextRankDescription"></span>
</div>
<hr>
<ul class="stats">
<!--ko foreach: stats-->
<li>
<span class="value">+
<span data-bind="text: value"></span>
</span>
<span data-bind=" text: title" class="title"></span>
</li>
<!--/ko-->
</ul>
<!--ko if: talentSummary-->
<div class="talent-summary">Octroie
<span data-bind="text: talentSummary"></span>
</div>
<!--/ko-->
<div data-bind="text: helpMessage, css:{positive: dependenciesFulfilled}" class="help-message"></div>
</div>
<div class="skill-points">
<span data-bind="text: points" class="points"></span>/
<span data-bind=" text: maxPoints" class="max-points"></span>
</div>
<div data-bind="click: addPoint, rightClick: removePoint" class="hit-area"></div>
</div>
</div>
<!--/ko-->
</div>
<div class="avatar">
<div class="portrait">
<img data-bind="attr: { src: portraitURL }">
</div>
<div class="portrait-controls">
<button data-bind="click: choosePreviousPortrait">«</button>
<button data-bind="click: chooseNextPortrait">»</button>
</div>
<div class="details">
<input data-bind="value: avatarName" class="h2">
<div class="level">Bricodeur niveau
<span data-bind=" text: level" class="value"></span>
</div>
<div data-bind="text: talentSummary" class="talent-summary"></div>
<ul class="stats">
<!--ko foreach: stats-->
<li>
<span data-bind="text: title" class="title"></span>:
<span data-bind=" text: value" class="value"></span>
</li>
<!--/ko-->
</ul>
</div>
</div>
<div class="sign-off">
<img class="logobas" src="img/lesbricodeurs.png" alt="Les bricodeurs">
<h2>Venez apprendre avec nous!</h2>
<p>
<a href="https://twitter.com/lesbricodeurs" class="twitter-follow-button" data-show-count="false" data-size="large"
data-dnt="true">Suivre @lesbricodeurs</a>
</p>
<p>
<a href="https://facebook.com/lesbricodeurs" class="twitter-follow-button" data-show-count="false" data-size="large"
data-dnt="true">Page des bricodeurs</a>
</p>
<br>
</div>
</div>
<!--open-->
</div>
<div class="ltIE9-show ltIE9-warning">
<img src="img/logo.png" class="logo">
<h2>Please upgrade your browser!</h2>
<p>Try one of these free options:</p>
<ul>
<li>
<a onclick="_gaq.push(['_trackEvent','external link','upgrade browser','Chrome']);" href="http://google.com/chrome"
target="_blank">Google Chrome</a>
</li>
<li>
<a onclick="_gaq.push(['_trackEvent','external link','upgrade browser','MSIE']);" href="http://windows.microsoft.com/en-US/internet-explorer/download-ie"
target="_blank">Microsoft Internet Explorer 10</a>
</li>
<li>
<a onclick="_gaq.push(['_trackEvent','external link','upgrade browser','Firefox']);" href="www.mozilla.org/en-US/firefox"
target="_blank">Mozilla Firefox</a>
</li>
</ul>
</div>
</script>
<script src="indexTest.dnd.dataTest.js"></script>
<script src="indexTest.dnd.js"></script>
</body>
</html>