forked from TurkServer/meteor-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplates.html
39 lines (36 loc) · 1.11 KB
/
templates.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
<template name="_tutorial">
{{! don't put anything reactive in here, it's all animated.}}
<div class="spotlight"></div>
<div class="modal positioned">
<div class="modal-body">
{{#isolate}}
{{{content}}}
{{/isolate}}
</div>
<div class="modal-footer">
<span class="muted pull-left">
<i class="fa fa-arrows"></i>drag me to reposition
</span>
{{> _tutorial_buttons}}
</div>
</div>
</template>
<template name="_tutorial_buttons">
<div class="btn-group">
{{#if prevEnabled}}
<button class="btn btn-warning action-tutorial-back">
<i class="fa fa-arrow-left"></i> Back
</button>
{{/if}}
{{#if nextEnabled}}
<button class="btn btn-primary action-tutorial-next">
Next <i class="fa fa-arrow-right"></i>
</button>
{{/if}}
{{#if finishEnabled}}
<button class="btn btn-success action-tutorial-finish">
Finish <i class="fa fa-check"></i>
</button>
{{/if}}
</div>
</template>