Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<a href="/listen" class="menu menuCircle">Listen</a>
</div>
<div class="col-md-4 col-sm-12">
<a href="/learn" class="menu menuCircle">Learn</a>
<a href="/screen" class="menu menuCircle">Screen</a>
</div>
<div class="col-md-4 col-sm-12">
<a href="/refer" class="menu menuCircle">Refer</a>
Expand All @@ -13,7 +13,7 @@

<div class="row">
<div class="col-md-4 col-sm-12">
<a href="/screen" class="menu menuCircle">Screen</a>
<a href="/learn" class="menu menuCircle">Learn</a>
</div>
<div class="col-md-4 col-sm-12">
<a href="/remind" class="menu menuCircle">Remind</a>
Expand Down
20 changes: 13 additions & 7 deletions views/learn.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,21 @@ <h2 class="letterSize">
<div class="panel panel-default">
<div class="panel-body">
{{#each learn}}
<div class="learnSection">
<h2>{{this.category}}</h2>
<h3>{{this.subtitle}}</h3>
{{#each this.things_to_know}}
<p>{{this}}</p>
{{/each}}
<div class="container">
<h2>{{this.category}}</h2>
<button type="button" class="btn btn-info" data-toggle="collapse" data-target="#{{@index}}">{{this.subtitle}}</button>
<div id="{{@index}}" class="collapse">
<div>
{{#each this.thingsToKnow}}
<p>{{this}}</p>
{{/each}}
<a href="{{this.link}}">{{this.link}}</a>
</div>

</div>
</div>
<div class="buttonsContainer">
{{/each}}
</div>
</div>
</div>
</div>
20 changes: 10 additions & 10 deletions views/listen.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@
<div class="row">
<div class="col-md-2 col-sm-12">
<h2 class="l">L</h2>
<p class="lp">Listen nonjudgmentally and empathically gather</p>
<p class="lp"><strong>Listen</strong> nonjudgmentally and empathically gather</p>
</div>
<div class="col-md-2 col-sm-12">
<h2 class="i">I</h2>
<p class="ip">Gather Information, ask open questions, don't push</p>
<div class="col-md-2 col-sm-12">
<h2 class="i">I</h2>
<p class="ip">Gather <strong>Information</strong>, ask open questions, don't push</p>
</div>
<div class="col-md-2 col-sm-12">
<h2 class="s">S</h2>
<p class="sp">Assess people's risk of harm, Self-harm or Suicide</p>
<p class="sp">Assess people's risk of harm, <strong>Self-harm or Suicide</strong></p>
</div>
<div class="col-md-2 col-sm-12">
<h2 class="t">T</h2>
<p class="tp">Tell them useful information about their problem, reassure</p>
<p class="tp"><strong>Tell</strong> them useful information about their problem, reassure</p>
</div>
<div class="col-md-2 col-sm-12">
<h2 class="e">E</h2>
<p class="ep">Encouraging self-help and other support strategies</p>
<p class="ep"><strong>Encouraging</strong> self-help and other support strategies</p>
</div>
<div class="col-md-2 col-sm-12">
<h2 class="n">N</h2>
<p class="np">Not alone, follow up and direct to appropriate professional help</p>
<p class="np"><strong>Not alone</strong>, follow up and direct to appropriate professional help</p>
</div>
</div>
</div>
Expand All @@ -38,5 +38,5 @@ <h3 id='convoStarter' class="panel-title">Conversation Starters</h3>
</div>
{{/each}}
</div>
</div>
</div>
</div>
</div>