-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.html.hb
More file actions
108 lines (102 loc) · 5.7 KB
/
Copy pathpage.html.hb
File metadata and controls
108 lines (102 loc) · 5.7 KB
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="js/dry.underscore.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/glyphicons.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body class="clearfix">
<div class="modal suicide hide">
<div class="container">
<div class="header">
<div class="title"></div>
<div class="close"><span class="glyphicon glyphicon-remove"></span></div>
</div>
<div class="content clearfix">
If you're thinking about suicide, please <a target="_blank" href="https://www.helpguide.org/articles/suicide-prevention/suicide-help-dealing-with-your-suicidal-thoughts-and-feelings.htm">read this</a> or call 1-800-273-TALK (8255) in the U.S.<br/> <br/>
There is hope and help.<br/> <br/>
To find a suicide helpline outside the U.S. visit <a href="http://www.iasp.info/resources/Crisis_Centres/" target="_blank">IASP</a> or <a href="http://www.suicide.org/international-suicide-hotlines.html" target="_blank">Suicide.org</a>.
</div>
</div>
</div>
<div class="container clearfix">
<div class="checklist clearfix">
<div class="header">
<div class="title">Burns Depression Checklist</div>
<div class="instructions">Instructions: <span>Put a check (by clicking or tapping) to indicate how much you have experienced each symptom during the past week, including today. Please answer all 25 items.</span></div>
</div>
{{#each checklist}}
<div class="questions">
<div class="title">
<div class="text">{{title}}</div>
<div class="answers">
{{#each ../answers}}
<div class="answer hide" data-score="{{score}}">
<span class="label hide">{{title}}</span>
</div>
{{/each}}
</div>
</div>
{{#each questions}}
<div class="question {{#if first}}active{{/if}} {{#if suicide}}suicide{{/if}}">
<div class="text">{{number}}. {{text}}</div>
<div class="answers">
{{#each ../../answers}}
<div class="answer" data-score="{{score}}">
<span class="icon glyphicon glyphicon-ok"></span>
</div>
{{/each}}
<div class="labels">
{{#each ../../answers}}
<div class="label"><span class="label">{{title}}</span></div>
{{/each}}
</div>
</div>
</div>
{{/each}}
</div>
{{/each}}
</div>
<div class="results clearfix hide">
<div class="header hide">
<div class="title">Results</div>
<!-- <div class="score">Score: <span class="value"></span></div> -->
<!-- <div class="result">Result: <span class="value"></span></div> -->
</div>
<div class="content">
<div class="wrapper clearfix">
<div class="sentence"><span class="value"></span></div>
<div class="help">
<div class="hope">If you treat your depression you will feel better. I promise. There is hope.</div>
<div class="resources">Read <a target="_blank" href="https://www.amazon.com/Feeling-Good-New-Mood-Therapy/dp/0380810336">this book</a> or <a target="_blank" href="https://therapists.psychologytoday.com/rms">find a therapist</a>.</div>
<small>(In a clinical study the book relieved the symptoms of depression as effectively as medication.)</small>
<small class="smaller">(I'm not getting paid for the links.)</small>
</div>
</div>
<div class="legend hide">
{{#legend}}
<div class="header">
<div class="score">Score</div>
<div class="title">{{title}}</div>
<a class="legend_close hide"><span class="glyphicon glyphicon-remove"></span></a>
</div>
<div class="values clearfix">
{{#each values}}
<div class="value">
<span class="range">{{min}}-{{max}}</span>
<span class="result">{{result}}</span>
</div>
{{/each}}
</div>
{{/legend}}
<!-- <a class="legend_close hide">Close</a> -->
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript"> window.data = _.parse({{{page_data}}}); </script>
</html>