-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
100 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<h1 ...attributes class="callout"> | ||
<span class="callout-subtitle">{{@subtitle}}</span><br> | ||
<span class="callout-title">{{yield}}</span> | ||
</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,17 @@ | ||
{{page-title "Glossary"}} | ||
<div class="callout"> | ||
<h2>Check here</h2> | ||
<h1 class="callout-focus">DEI Vocabulary</h1> | ||
</div> | ||
<Callout @subtitle="Check here">DEI Vocabulary</Callout> | ||
|
||
<p class="intro">Not sure what some terms mean? No problem! In this overview you will find many terms that you may encounter within your organization</p> | ||
<div class="search"> | ||
<label> | ||
<div class="search-bar"> | ||
<FaIcon class="search-icon" @icon='search' /> | ||
<Input @value={{this.query}} class="search-input light" placeholder="Type here to filter the glossary"/> | ||
</div> | ||
</label> | ||
<div class="search-bar"> | ||
<FaIcon class="search-icon" @icon='search' /> | ||
<Input @type="search" @value={{this.query}} class="search-input light" placeholder="Type here to filter the glossary" aria-label="Glossary search"/> | ||
</div> | ||
</div> | ||
<div class="definition-container"> | ||
{{#each this.results as |item|}} | ||
{{!-- template-lint-disable no-triple-curlies --}} | ||
<div class="row"><div class="caps">{{item.caps}}</div><div><h3 class="glossary-title">{{item.title}}<a href="#{{item.title}}" id={{item.title}}>{{svg-jar 'link' class="link-icon"}}</a></h3><p class="definition">{{{item.definition}}}</p></div></div> | ||
<div class="row"><div class="caps">{{item.caps}}</div><div><h3 class="glossary-title">{{item.title}}<a href="#{{item.title}}" aria-label="Go to {{item.title}}" id={{item.title}}>{{svg-jar 'link' class="link-icon"}}</a></h3><p class="definition">{{{item.definition}}}</p></div></div> | ||
{{/each}} | ||
</div> | ||
{{!-- {{svg-jar 'index-illustration' class="large-illustration"}} --}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
{{page-title "Index"}} | ||
{{page-title "Home"}} | ||
<div class="index-container"> | ||
<div class="callout landing-callout"> | ||
<h2>Together</h2> | ||
<h1 class="callout-focus">Diversity <br>& Inclusion</h1> | ||
</div> | ||
<Callout class="landing-callout" @subtitle="Together">Diversity <br>& Inclusion</Callout> | ||
<p class="intro">Diversity and Inclusion are essential for fostering a more equitable and harmonious workplace. This app is your ticket to becoming an active ally in the realm of diversity and inclusion!</p> | ||
<LinkTo class="button button-index" @route="bingo">Start now!</LinkTo> | ||
<LinkTo class="button button-index" @route="contribute">Start now!</LinkTo> | ||
</div> | ||
{{!-- {{svg-jar 'landscape-illustration' class="large-illustration"}} --}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
tests/unit/controllers/bingo-test.js → tests/unit/controllers/contribute-test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import { module, test } from 'qunit'; | ||
import { setupTest } from 'dei-bingo/tests/helpers'; | ||
|
||
module('Unit | Controller | bingo', function (hooks) { | ||
module('Unit | Controller | contribute', function (hooks) { | ||
setupTest(hooks); | ||
|
||
// TODO: Replace this with your real tests. | ||
test('it exists', function (assert) { | ||
let controller = this.owner.lookup('controller:bingo'); | ||
let controller = this.owner.lookup('controller:contribute'); | ||
assert.ok(controller); | ||
}); | ||
}); |
4 changes: 2 additions & 2 deletions
4
tests/unit/routes/bingo-test.js → tests/unit/routes/contribute-test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import { module, test } from 'qunit'; | ||
import { setupTest } from 'dei-bingo/tests/helpers'; | ||
|
||
module('Unit | Route | bingo', function (hooks) { | ||
module('Unit | Route | contribute', function (hooks) { | ||
setupTest(hooks); | ||
|
||
test('it exists', function (assert) { | ||
let route = this.owner.lookup('route:bingo'); | ||
let route = this.owner.lookup('route:contribute'); | ||
assert.ok(route); | ||
}); | ||
}); |