-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.pug
52 lines (43 loc) · 1.36 KB
/
index.pug
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
head
link(rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css")
style
include style.css
body
.ui.text.container
.ui.raised.segments
.ui.center.aligned.padded.secondary.segment
h1.ui.header Conscent
.ui.very.padded.segment
p IRB informed conscent text
.ui.raised.segments
.ui.center.aligned.padded.secondary.segment
h1.ui.header English Language Test
.ui.very.padded.segment
p Language proficiency test
.ui.raised.segments
.ui.center.aligned.padded.secondary.segment
h1.ui.header Concepts Quiz
.ui.very.padded.segment
p Teach participants about toxicity/dehumanizing language/etc.
.ui.raised.segments
.ui.center.aligned.padded.secondary.segment
h1.ui.header Instructions
.ui.very.padded.segment
p Task instruction text
.ui.raised.segments
.ui.center.aligned.padded.secondary.segment
h1.ui.header Tasks
each sentence, sindex in sentences
.ui.very.padded.segment
h3 Sentence #{sindex+1}
.ui.form
.grouped.fields
.ui.message=sentence
label Please select any offending words:
- const splitSentence = sentence.split(' ')
each word, windex in splitSentence
- const text = `s${sindex}-w${windex}`
.field
.ui.checkbox
input(id=text, type='checkbox')
label(for=text) #{word}