-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_testing.pug
More file actions
52 lines (30 loc) · 931 Bytes
/
Copy path_testing.pug
File metadata and controls
52 lines (30 loc) · 931 Bytes
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
extends layout/mainLayout
block middle-block
style.
.color {
@apply text-blue-500;
}
button(class='text-blue-500') button
button(class='color') button
div#forModalContainer(class='col-span-10 md:col-span-7')
h1(class='p-2 border-b border-slate-200 text-slate-900 font-bold') Testing Page
section(id='root')
h2 Heading goes here
script(nonce=cspNonce).
script(src="/js/_testing.js")
//- block content
include icon/icons
div(class='grid grid-cols-12 p-2 divide-x')
//- left-section
div(class='col-span-2')
+NavComponent()
//- middle-section
div#forModalContainer(class='col-span-10 md:col-span-7')
h1(class='p-2 border-b border-slate-200 text-slate-900 font-bold') Testing Page
section(id='root')
h2 Heading goes here
//- right-section
div(class='hidden md:col-span-3')
p right section hiddend for now
script(nonce=cspNonce).
script(src="/js/_testing.js")