-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathbutton.hbs
587 lines (552 loc) · 22.5 KB
/
button.hbs
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: MPL-2.0
}}
{{page-title "Copy::Button Component"}}
<Shw::Text::H1>Copy::Button</Shw::Text::H1>
<section data-test-percy>
<Shw::Text::H2>Content</Shw::Text::H2>
<input type="hidden" id="targetToCopy" value="This is some text stored in a hidden <input> element" />
<Shw::Flex as |SF|>
<SF.Item @label="Default">
<Hds::Copy::Button @text="Copy" @targetToCopy="#targetToCopy" />
</SF.Item>
<SF.Item @label="Icon only">
<Hds::Copy::Button @isIconOnly={{true}} @text="Copy" @targetToCopy="#targetToCopy" />
</SF.Item>
</Shw::Flex>
<Shw::Text::H2>Sizes</Shw::Text::H2>
<Shw::Flex as |SF|>
{{#each @model.SIZES as |size|}}
<SF.Item @label={{capitalize size}}>
<Hds::Copy::Button @text="Copy" @size={{size}} @targetToCopy="#targetToCopy" />
</SF.Item>
{{/each}}
<SF.Item @label="Full width">
<Shw::Outliner {{style width="300px"}}>
<Hds::Copy::Button @text="Copy" @isFullWidth={{true}} @targetToCopy="#targetToCopy" />
</Shw::Outliner>
</SF.Item>
</Shw::Flex>
<Shw::Text::H2>States</Shw::Text::H2>
<Shw::Grid @columns={{6}} as |SG|>
{{#each @model.SIZES as |size|}}
{{#each @model.STATES as |state|}}
<SG.Item @label={{if (eq size "small") (capitalize state)}}>
<Hds::Copy::Button @text="Copy" @size={{size}} mock-state-value={{state}} @targetToCopy="#targetToCopy" />
</SG.Item>
{{/each}}
{{#let (array "success" "error") as |statuses|}}
{{#each statuses as |status|}}
<SG.Item @label={{if (eq size "small") (capitalize status)}}>
<Hds::Copy::Button @text="Copy" @size={{size}} @targetToCopy="#targetToCopy" mock-copy-status={{status}} />
</SG.Item>
{{/each}}
{{/let}}
{{/each}}
</Shw::Grid>
<Shw::Divider />
<Shw::Text::H2>Compositions</Shw::Text::H2>
<Shw::Flex as |SF|>
<SF.Item @label="With MaskedInput::Base">
<div class="shw-component-copy-button-composition-masked-input-base">
<Hds::Form::MaskedInput::Base @value="Lorem ipsum dolor" />
<Hds::Copy::Button @isIconOnly={{true}} @text="Copy" @textToCopy="Lorem ipsum dolor" />
</div>
</SF.Item>
<SF.Item @label="With MaskedInput::Base (multiline)">
<div class="shw-component-copy-button-composition-masked-input-base">
<Hds::Form::MaskedInput::Base @isMultiline={{true}} @value="Lorem ipsum dolor" />
<Hds::Copy::Button @isIconOnly={{true}} @text="Copy" @textToCopy="Lorem ipsum dolor" />
</div>
</SF.Item>
</Shw::Flex>
<Shw::Flex as |SF|>
<SF.Item @label="With Form::Field + MaskedInput::Base">
<Hds::Form::Field @layout="vertical" as |F|>
<F.Label>This is the label</F.Label>
<F.HelperText>This is the helper text</F.HelperText>
<F.Control>
<div class="shw-component-copy-button-composition-masked-input-base">
<Hds::Form::MaskedInput::Base @value="Lorem ipsum dolor" />
<Hds::Copy::Button @isIconOnly={{true}} @text="Copy" @textToCopy="Lorem ipsum dolor" />
</div>
</F.Control>
</Hds::Form::Field>
</SF.Item>
<SF.Item @label="With Form::Field + MaskedInput::Base (multiline)">
<Hds::Form::Field @layout="vertical" as |F|>
<F.Label>This is the label</F.Label>
<F.HelperText>This is the helper text</F.HelperText>
<F.Control>
<div class="shw-component-copy-button-composition-masked-input-base">
<Hds::Form::MaskedInput::Base @isMultiline={{true}} @value="Lorem ipsum dolor" />
<Hds::Copy::Button @isIconOnly={{true}} @text="Copy" @textToCopy="Lorem ipsum dolor" />
</div>
</F.Control>
</Hds::Form::Field>
</SF.Item>
</Shw::Flex>
<Shw::Flex as |SF|>
<SF.Item @label="With MaskedInput::Field">
<div class="shw-component-copy-button-composition-masked-input-field">
<Hds::Form::MaskedInput::Field @value="Lorem ipsum dolor" as |F|>
<F.Label>This is the label</F.Label>
<F.HelperText>This is the helper text</F.HelperText>
</Hds::Form::MaskedInput::Field>
<Hds::Copy::Button @isIconOnly={{true}} @text="Copy" @textToCopy="Lorem ipsum dolor" />
</div>
</SF.Item>
<SF.Item @label="With MaskedInput::Field (multiline)">
<div class="shw-component-copy-button-composition-masked-input-field">
<Hds::Form::MaskedInput::Field @value="Lorem ipsum dolor" @isMultiline={{true}} as |F|>
<F.Label>This is the label</F.Label>
<F.HelperText>This is the helper text</F.HelperText>
</Hds::Form::MaskedInput::Field>
<Hds::Copy::Button @isIconOnly={{true}} @text="Copy" @textToCopy="Lorem ipsum dolor" />
</div>
</SF.Item>
</Shw::Flex>
<Shw::Divider />
<Shw::Text::H2>Demo</Shw::Text::H2>
<Shw::Text::H3>With <code>text</code> as argument</Shw::Text::H3>
<Shw::Flex as |SF|>
<SF.Item>
<Hds::Copy::Button @text="Copy a secret key" @textToCopy="someSecretThingGoesHere" />
</SF.Item>
<SF.Item>
{{! context: https://github.com/hashicorp/design-system/pull/1564 }}
<Hds::Copy::Button @text="Copy a number" @textToCopy={{123456789}} />
</SF.Item>
<SF.Item>
<Hds::Copy::Button @text="Copy a Bigint number" @textToCopy={{this.bigIntNumber}} />
</SF.Item>
</Shw::Flex>
<Shw::Text::H4>Special cases</Shw::Text::H4>
<Shw::Flex as |SF|>
<SF.Item>
<Hds::Copy::Button @text="Copy an empty string" @textToCopy="" />
</SF.Item>
<SF.Item>
<Hds::Copy::Button @text="Copy the number '0'" @textToCopy={{0}} />
</SF.Item>
</Shw::Flex>
<Shw::Divider @level={{2}} />
<Shw::Text::H3>With <code>target</code> element</Shw::Text::H3>
<Shw::Text::H4>Target types</Shw::Text::H4>
<Shw::Flex @columns={{3}} @gap="2rem" as |SF|>
<SF.Item @label="Target as a CSS selector (`string`)">
<div class="shw-component-copy-button-flex-container">
<p class="shw-text-body" id="test-target-string">Lorem ipsum dolor</p>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the content in the node"
@targetToCopy="#test-target-string"
/>
</div>
</SF.Item>
<SF.Item @label="Target as a DOM element (`Node`)">
<div class="shw-component-copy-button-flex-container">
<p class="shw-text-body" id="test-target-node-element">Lorem ipsum dolor</p>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the content in the node"
@targetToCopy={{this.targetNodeElement}}
/>
</div>
</SF.Item>
</Shw::Flex>
<Shw::Text::H4>HDS components</Shw::Text::H4>
<Shw::Grid @columns={{3}} @gap="2rem" as |SG|>
<SG.Item @label="Input component" class="shw-component-copy-button-input-component">
<Hds::Form::TextInput::Field @value="036140285924" @name="test-input" @id="test-input" as |F|>
<F.Label>Input Label</F.Label>
</Hds::Form::TextInput::Field>
<Hds::Copy::Button @text="Copy the input value" @targetToCopy="#test-input" />
</SG.Item>
<SG.Item @label="Input component (readonly)" class="shw-component-copy-button-input-component">
<Hds::Form::TextInput::Field
readonly
@value="036140285924-readonly"
@name="test-input-readonly"
@id="test-input-readonly"
as |F|
>
<F.Label>Input Label</F.Label>
</Hds::Form::TextInput::Field>
<Hds::Copy::Button @text="Copy the input value" @targetToCopy="#test-input-readonly" />
</SG.Item>
<SG.Item @label="Input component (disabled)" class="shw-component-copy-button-input-component">
<Hds::Form::TextInput::Field
disabled
@value="036140285924-disabled"
@name="test-input-disabled"
@id="test-input-disabled"
as |F|
>
<F.Label>Input Label</F.Label>
</Hds::Form::TextInput::Field>
<Hds::Copy::Button @text="Copy the input value" @targetToCopy="#test-input-disabled" />
</SG.Item>
<SG.Item @label="Textarea component">
<div class="shw-component-copy-button-flex-container">
<Hds::Form::Textarea::Base
@value="This is a normal
multiline text
that should be copied"
@name="test-textarea"
id="test-textarea"
/>
<Hds::Copy::Button @isIconOnly={{true}} @text="Copy the textarea value" @targetToCopy="#test-textarea" />
</div>
</SG.Item>
<SG.Item @label="Textarea component (readonly)">
<div class="shw-component-copy-button-flex-container">
<Hds::Form::Textarea::Base
readonly
@value="This is a redonly
multiline text
that should be copied"
@name="test-textarea-readonly"
id="test-textarea-readonly"
/>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the textarea value"
@targetToCopy="#test-textarea-readonly"
/>
</div>
</SG.Item>
<SG.Item @label="Textarea component (disabled)">
<div class="shw-component-copy-button-flex-container">
<Hds::Form::Textarea::Base
disabled
@value="This is a disabled
multiline text
that should be copied"
@name="test-textarea-disabled"
id="test-textarea-disabled"
/>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the textarea value"
@targetToCopy="#test-textarea-disabled"
/>
</div>
</SG.Item>
<SG.Item @label="Select component">
<div class="shw-component-copy-button-flex-container">
<Hds::Form::Select::Base @name="test-select" id="test-select" as |C|>
<C.Options>
<option>Lorem ipsum dolor</option>
<option selected>Sit amet</option>
<option>Consectetur adipiscing elit</option>
</C.Options>
</Hds::Form::Select::Base>
<Hds::Copy::Button @isIconOnly={{true}} @text="Copy the textarea value" @targetToCopy="#test-select" />
</div>
</SG.Item>
<SG.Item @label="Select component (disabled)">
<div class="shw-component-copy-button-flex-container">
<Hds::Form::Select::Base disabled @name="test-select-disabled" id="test-select-disabled" as |C|>
<C.Options>
<option>Lorem ipsum dolor</option>
<option>Sit amet</option>
<option selected>Consectetur adipiscing elit</option>
</C.Options>
</Hds::Form::Select::Base>
<Hds::Copy::Button @isIconOnly={{true}} @text="Copy the textarea value" @targetToCopy="#test-select-disabled" />
</div>
</SG.Item>
</Shw::Grid>
<Shw::Grid @columns={{3}} @gap="2rem" as |SG|>
<SG.Item @label="Within a Dropdown">
<Hds::Dropdown @listPosition="bottom-left" as |dd|>
<dd.ToggleButton @text="Open menu" />
<dd.Generic>
<div class="shw-component-copy-button-demo-container">
<p class="shw-text-h4">With HDS components</p>
<p class="shw-text-body">Input</p>
<div class="shw-component-copy-button-demo-flex-container">
<Hds::Form::TextInput::Base
@name="test-dropdown-text-input"
id="test-dropdown-text-input"
@value="Lorem ipsum dolor"
/>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the text input value"
@targetToCopy="#test-dropdown-text-input"
/>
</div>
<Shw::Divider @level={{2}} />
<p class="shw-text-h4">With HTML blocks</p>
<p class="shw-text-body">Structured content</p>
<div class="shw-component-copy-button-demo-flex-container">
<p class="shw-component-copy-button-demo-paragraph" id="test-dropdown-structured-content">This is the
<span><strong>some</strong>
<em>structured</em></span>
content that will be
<a href="#">targeted</a>
by the
<code>button</code>.</p>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the structured content"
@targetToCopy="#test-dropdown-structured-content"
/>
</div>
<p class="shw-text-body">Code block with 'contentEditable'</p>
<div class="shw-component-copy-button-demo-flex-container">
{{!-- prettier-ignore --}}
<pre class="shw-component-copy-button-code-block"><code
id="test-dropdown-code-block-editable"
contenteditable="true"
><h1>Lorem</h1>
<p>Ipsum dolor</p></code></pre>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the code block content"
@targetToCopy="#test-dropdown-code-block-editable"
/>
</div>
</div>
</dd.Generic>
</Hds::Dropdown>
</SG.Item>
<SG.Item @label="Within a Modal">
<Hds::Button @color="secondary" @text="Open modal" {{on "click" this.activateModal}} />
{{! template-lint-disable no-autofocus-attribute }}
{{#if this.isModalActive}}
<Hds::Modal id="test-copy-button-modal" @onClose={{this.deactivateModal}} as |M|>
<M.Header>
Lorem ipsum dolor
</M.Header>
<M.Body>
<form name="test-copy-button-modal-form" class="shw-component-copy-button-demo-container">
<p class="shw-text-h4">With HDS components</p>
<p class="shw-text-body">Input</p>
<div class="shw-component-copy-button-demo-flex-container">
<Hds::Form::TextInput::Base
@name="test-modal-text-input"
id="test-modal-text-input"
@value="Lorem ipsum dolor"
/>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the text input value"
@targetToCopy="#test-modal-text-input"
/>
</div>
<Shw::Divider @level={{2}} />
<p class="shw-text-h4">With HTML blocks</p>
<p class="shw-text-body">Structured content</p>
<div class="shw-component-copy-button-demo-flex-container">
<p class="shw-component-copy-button-demo-paragraph" id="test-modal-structured-content">This is the
<span><strong>some</strong>
<em>structured</em></span>
content that will be
<a href="#">targeted</a>
by the
<code>button</code>.</p>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the structured content"
@targetToCopy="#test-modal-structured-content"
/>
</div>
<p class="shw-text-body">Code block with 'contentEditable'</p>
<div class="shw-component-copy-button-demo-flex-container">
{{!-- prettier-ignore --}}
<pre class="shw-component-copy-button-code-block"><code
id="test-modal-code-block-editable"
contenteditable="true"
><h1>Lorem</h1>
<p>Ipsum dolor</p></code></pre>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the code block content"
@targetToCopy="#test-modal-code-block-editable"
/>
</div>
</form>
</M.Body>
<M.Footer as |F|>
<Hds::ButtonSet>
<Hds::Button type="submit" @text="OK" {{on "click" this.deactivateModal}} />
<Hds::Button type="button" @text="Cancel" @color="secondary" {{on "click" F.close}} />
</Hds::ButtonSet>
</M.Footer>
</Hds::Modal>
{{/if}}
</SG.Item>
</Shw::Grid>
<Shw::Text::H4>HTML blocks</Shw::Text::H4>
<Shw::Grid @columns={{2}} @gap="2rem" as |SG|>
<SG.Item @label="Structured content">
<Hds::Copy::Button @text="Copy the content below" @targetToCopy="#test-structured-content" />
<ul class="shw-component-copy-structured-content" id="test-structured-content">
<li class="shw-text-body">
<p>This whole list is the
<span><strong>target</strong>
<em>element</em></span></p>
</li>
<li class="shw-text-body">
<p>The button will
<code>copy</code>
the
<a href="#">text</a>
in this
<cite>target</cite>
element.</p>
</li>
</ul>
</SG.Item>
<SG.Item @label="With hidden content">
<Hds::Copy::Button @text="Copy the content below" @targetToCopy="#test-hidden-content" />
<p class="shw-text-body" id="test-hidden-content">This paragraph contains some
<strong class="shw-component-copy-button-display-none">not</strong>
hidden content
<strong class="shw-component-copy-button-visibility-hidden">, or not?</strong>
</p>
</SG.Item>
</Shw::Grid>
<Shw::Grid @columns={{2}} @gap="2rem" as |SG|>
<SG.Item @label="Code block">
<Hds::Copy::Button @text="Copy the code block" @targetToCopy="#test-code-block" />
{{!-- prettier-ignore --}}
<pre class="shw-component-copy-button-code-block"><code id="test-code-block"><h1>A page header example</h1>
<p>Some paragraph text also</p></code></pre>
</SG.Item>
<SG.Item @label="Code block with 'contenteditable'">
<Hds::Copy::Button @text="Edit and copy the code block" @targetToCopy="#test-code-block-editable" />
{{!-- prettier-ignore --}}
<pre class="shw-component-copy-button-code-block"><code id="test-code-block-editable" contenteditable="true"><h1>A page header example</h1>
<p>Some paragraph text also</p></code></pre>
</SG.Item>
</Shw::Grid>
<Shw::Text::H4>HTML input elements</Shw::Text::H4>
<Shw::Flex @gap="2rem" as |SF|>
<SF.Item @label="Text input">
<div class="shw-component-copy-button-flex-container">
<input type="text" name="test-generic-input-text" id="test-generic-input-text" value="Lorem ipsum dolor" />
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic input text value"
@targetToCopy="#test-generic-input-text"
/>
</div>
</SF.Item>
<SF.Item @label="Password input">
<div class="shw-component-copy-button-flex-container">
<input
type="password"
name="test-generic-input-password"
id="test-generic-input-password"
value="Thisisapassword"
/>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic input password value"
@targetToCopy="#test-generic-input-password"
/>
</div>
</SF.Item>
<SF.Item @label="Number input">
<div class="shw-component-copy-button-flex-container">
<input type="number" name="test-generic-input-number" id="test-generic-input-number" value="123456" />
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic input number value"
@targetToCopy="#test-generic-input-number"
/>
</div>
</SF.Item>
<SF.Item @label="URL input">
<div class="shw-component-copy-button-flex-container">
<input type="url" name="test-generic-input-url" id="test-generic-input-url" value="https://www.hello.com" />
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic input url value"
@targetToCopy="#test-generic-input-url"
/>
</div>
</SF.Item>
<SF.Item @label="Email input">
<div class="shw-component-copy-button-flex-container">
<input type="email" name="test-generic-input-email" id="test-generic-input-email" value="[email protected]" />
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic input email value"
@targetToCopy="#test-generic-input-email"
/>
</div>
</SF.Item>
<SF.Item @label="Date input">
<div class="shw-component-copy-button-flex-container">
<input type="date" name="test-generic-input-date" id="test-generic-input-date" value="2018-07-22" />
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic input date value"
@targetToCopy="#test-generic-input-date"
/>
</div>
</SF.Item>
<SF.Item @label="Time input">
<div class="shw-component-copy-button-flex-container">
<input type="time" name="test-generic-input-time" id="test-generic-input-time" value="23:59" />
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic input time value"
@targetToCopy="#test-generic-input-time"
/>
</div>
</SF.Item>
<SF.Item @label="Range input">
<div class="shw-component-copy-button-flex-container">
<input type="range" name="test-generic-input-range" id="test-generic-input-range" min="0" max="10" value="6" />
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic input range value"
@targetToCopy="#test-generic-input-range"
/>
</div>
</SF.Item>
<SF.Item @label="Color input">
<div class="shw-component-copy-button-flex-container">
<input type="color" name="test-generic-input-color" id="test-generic-input-color" value="#e66465" />
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic input color value"
@targetToCopy="#test-generic-input-color"
/>
</div>
</SF.Item>
</Shw::Flex>
<Shw::Flex @gap="2rem" as |SF|>
<SF.Item @label="Textarea">
<div class="shw-component-copy-button-flex-container">
<textarea name="test-generic-textarea" id="test-generic-textarea" rows="3">Lorem ipsum dolor</textarea>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic textarea value"
@targetToCopy="#test-generic-textarea"
/>
</div>
</SF.Item>
<SF.Item @label="Select">
<div class="shw-component-copy-button-flex-container">
<select name="test-generic-select" id="test-generic-select">
<option>Lorem ipsum dolor</option>
<option>Sit amet</option>
<option>Consectetur adipiscing elit</option>
</select>
<Hds::Copy::Button
@isIconOnly={{true}}
@text="Copy the generic select value"
@targetToCopy="#test-generic-select"
/>
</div>
</SF.Item>
</Shw::Flex>
</section>