-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconference.pug
603 lines (564 loc) · 20 KB
/
conference.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
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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
include mixins/youtube.pug
include includes/navbar-1.pug
.container
.columns
.column
.row
+youtube('https://www.youtube.com/embed/OhCzX0iLnOc')
.row
.column
.tabbed
input#tab1(type='radio' name='css-tabs' checked)
input#tab2(type='radio' name='css-tabs')
input#tab3(type='radio' name='css-tabs')
ul.tabs
li.tab
label(for='tab1') Agenda
li.tab
label(for='tab2') Speakers
li.tab
label(for='tab3') Agenda
.tab-content
.row
.column.is-3
img.circular--square(src='https://source.unsplash.com/300x300/?agenda' alt="agenda")
.column
h4 Welcolme
p
| AI technology continues to develop at a rapid pace, many experts are warning about
| the dangers of artificial intelligence. Some people fear that AI will become smarter
| than humans and take over the world, while others are concerned about the potential
| for misuse and abuse of AI technology.
p
| Interestingly, many of the dangers associated with AI are not what you would expect.
| For example, one of the dangers of AI is that it could lead to widespread weird
| employment. With so many jobs being replaced by machines, there will be a lot of
| people who are only able to find odd work. AI could also have a negative impact on
| our mental health. With more and more people interacting with AI technology, we could
| see an increase in mental health issues such as depression, anxiety, and AI addiction.
.tab-content
.row
.column.is-3
img.circular--square(src='https://source.unsplash.com/200x200/?face,mature' alt="face")
.column
include includes/user-cards.pug
div(
class="lg:p-8",
x-data="alpineInstance()",
x-init="fetch('https://jsonplaceholder.typicode.com/users')\
.then(response => response.json())\
.then(data => users = data)"
)
h1(x-text="title")
p(x-html="intro")
.columns
// begin: user card
template(x-for="user in users", :key="user.id")
.column.is-third
.highlight.cursor-pointer(style="--my:5px; --levitate:4;--levitate-hvr:8; --br:0.4rem")
.card(style="--px:1rem")
h4.truncate(x-text="user.name")
h6.truncate.uppercase(x-text="user.company.name")
div(x-text="user.phone")
a.text-blue-600.mr-4.block(
class="hover:text-blue-700",
x-bind:href="'mailto:' + user.email",
x-text="user.email"
)
a.text-blue-600.block(
class="hover:text-blue-700",
x-bind:href="'https://' + user.website",
x-text="user.website"
)
// end: user card
.tab-content
.row
.column.is-3
img.circular--square(src='https://source.unsplash.com/200x200/?python,code' alt="code")
.column
h4 Downloads
p
| These tabs are quite easy to use as they dont need absolute positioning and min-heights. They can also be used multiple times in one document without any influence on CSS!
h1#accordion.title Accordion
h2.subtitle Clean collapsing accordions
p using only html and css
details
summary Thing
ul
li 1
details
summary Summary
ul
li 1
details
summary Summary
ul
li 1
li 2
details
summary Summary
ul
li 1
li 2
details
summary Summary
ul
li 1
li 2
li 3
h1#grid.title Grid
h2.subtitle A simple way to build columns
h3 a h3 example
p TODO Add vertical flexboxes, fillsize, dropdowns, and modals
hr
.content
p
| To build a
strong grid
| , just:
ol
li
| Add a
code columns
| container
li
| Add as many
code column
| elements
span.highlight as you want
.columns
.column
p.notification.is-info First column
.column
p.notification.is-success.shadowed Second column
.column
p.notification.is-warning Third column
.column
p.notification.is-danger Fourth column
figure.highlight highlight example
pre.code # Code Example
hr
h3#sizes.title Sizes
.content
p
| If you want to change the
strong size
|
| of a single column, you can use one the following classes:
ul
li
code is-half
li
code is-third
li
code is-quarter
p
| The
em other
|
| columns will fill up the
strong remaining
|
| space automatically.
.row
.column.is-half
p.notification.is-info
code.html is-half
.column
p.notification.is-warning(style="--shadow-inset:10;") Auto
.column
p.notification.is-danger Auto
.columns
.column.is-third
p.notification.is-info(style="--shadow-inset:10;")
code.html is-third
.column
p.notification.is-success(style="--levitate:8;") Auto
.column
p.notification.is-warning Auto
.column
p.notification.is-success Auto
.column
p.notification.is-warning Auto
.columns
.column.is-quarter
p.notification.is-info
code.html is-quarter
.column
p.notification.is-success Auto
h3.title 12 columns
.columns
.column.is-2
p.notification.is-info
code is-2
.column
p.notification.is-warning.is-centered 1
.column
p.notification.is-success.is-centered 1
.column
p.notification.is-warning.is-centered 1
.column
p.notification.is-success.is-centered 1
.column
p.notification.is-warning.is-centered 1
.column
p.notification.is-success.is-centered 1
.column
p.notification.is-warning.is-centered 1
.column
p.notification.is-success.is-centered 1
.column
p.notification.is-warning.is-centered 1
.column
p.notification.is-success.is-centered 1
hr
h3#hides.title Hidden Example
.columns
.column
p.notification.is-info First column
.column.hidden
p.notification.is-success Second column
.column
p.notification.is-warning Third column
hr
h3#forms.title Form Example
.columns
.column.is-half
form.notification.is-info(
style="--shadow-inset:10;"
method="get",
action="/html/codes/html_form_handler.cfm"
)
h2 Info
label
| Name
input(type="text", name="customer_name", required="")
label
| Phone
input(type="tel", name="phone_number")
label
| Email
input(type="email", name="email_address")
fieldset
legend Which taxi do you require?
label
input(type="radio", name="taxi", required="", value="car")
|
| Car
label
input(type="radio", name="taxi", required="", value="van")
|
| Van
label
input(type="radio", name="taxi", required="", value="tuktuk")
|
| Tuk Tuk
fieldset
legend Extras
p
label
input(type="checkbox", name="extras", value="baby")
|
| Baby Seat
p
label
input(type="checkbox", name="extras", value="wheelchair")
|
| Wheelchair Access
p
label
input(type="checkbox", name="extras", value="tip")
|
| Stock Tip
p
label
| Pickup Date/Time
input(type="datetime-local", name="pickup_time", required="")
p
label
| Pickup Place
select#pickup_place(name="pickup_place")
option(value="", selected="selected") Select One
option(value="office") Taxi Office
option(value="town_hall") Town Hall
option(value="telepathy") We'll Guess!
p
label
| Dropoff Place
input(
type="text",
name="dropoff_place",
required="",
list="destinations"
)
datalist#destinations
option(value="Airport")
option(value="Beach")
option(value="Fred Flinstone's House")
p
label
| Special Instructions
textarea(name="comments", maxlength="500")
p
button(style="--shadow-hvr:2;") Submit Booking
.column.hidden
p.notification.is-success Second column
.column
p.notification.is-warning Third column
.columns
.column.--text-centered
.price-item.shadowed
.price-item-header
h1 Starter
h3 for small teams
small $
| 29
div monthly per user
.price-item-detail
div Unlimited projects
div Unlimited pages
div Unlimited disk space
div 24 / 7 Free support
.price-item-actions
button.button.info STARTED FOR FREE
p.text-small.text-muted 7 days free trial
.column.--text-centered.shadowed
.price-item
.price-item-header
h1 Pro
h3 for larger teams
.price-item-price
.text-medium
small $
| 59
div monthly per user
.price-item-detail
div Unlimited projects
div Unlimited pages
div Unlimited disk space
div 24 / 7 Free support
div Advanced reporting
div Customizable interface
div CRM Integration
.price-item-actions
button.button.alert.drop-shadow STARTED FOR FREE
p.text-small.text-muted 30 days free trial
.column.--text-centered
.price-item.shadowed
.price-item-header
h1.--text-centered Enterprise
h3 for big teams
.price-item-price
.text-medium
small $
| 99
div monthly per user
.price-item-detail
div Unlimited projects
div Unlimited pages
div Unlimited disk space
div For full feature list, call us
.price-item-actions
button.button.info STARTED FOR FREE
p.text-small.text-muted 90 days free trial
.columns
.column
.Pricing-box
.price-title.spacing-box
h1 Regular
hr
.spacing-box
.price
span.price-sm $
span.price-lg 49
.price-tenure per month
hr
.pricing-features.spacing-grid
ul
li Full Access
li
| 1 Domain
strong Free
li Source Files
li
strong 50 User Accounts
li 6 Month License
li Premium Support
hr
.spacing-grid
a.btn.btn-md.btn-black Sign Up Today
.column
.Pricing-box.highlight(style=" --levitate:13; --br:0.4rem;")
.price-title.spacing-box
h1 Standard
hr
.spacing-box
.price
span.price-sm $
span.price-lg 79
.price-tenure per month
hr
.pricing-features.spacing-grid
ul
li Full Access
li
| 1 Domain
strong Free
li Source Files
li
strong 500 User Accounts
li 6 Month License
li Premium Support
hr
.spacing-grid
a.btn.btn-md.btn-black Sign Up Today
.column
.Pricing-box
.price-title.spacing-box
h1 Advanced
hr
.spacing-box
.price
span.price-sm $
span.price-lg 109
.price-tenure per month
hr
.pricing-features.spacing-grid
ul
li Full Access
li
| 1 Domain
strong Free
li Source Files
li
strong 5000 User Accounts
li 6 Month License
li Free Support
hr
.spacing-grid
a.btn.btn-md.btn-black Sign Up Today
.column.is-quarter.notification.is-danger
.tabbed
input#tab21(type='radio' name='css-tabs2')
input#tab22(type='radio' name='css-tabs2')
input#tab23(type='radio' name='css-tabs2' checked)
ul.tabs
li.tab
label(for='tab21') Chat
li.tab
label(for='tab22') Notes
li.tab
label(for='tab23') Upcoming
.tab-content
.row
.column
h4 Chat
img.circular--square(src='https://source.unsplash.com/300x300/?chat' alt="chat").column.is-3
p Fuduwahluz
p 20 hours ago
p 735
p LeBrenn
p 18 hours ago
p i like how 95% of computer innovations are just "this is annoying, lets spend 7 years making this easier for somebody"
p 191
p Rae
p 20 hours ago
p Do a video on open source licenses and their differences!
p 346
p REPLY
p 21 hours ago
p What an amazing ending!
p 354
p REPLY
p 20 hours ago (edited)
p YouTube : Removes Dislike Button Fireship : Finally I can post this video without consequences
p 1K
p REPLY
p 20 hours ago
p I DID not expect that ending, you are a genius.
p 121
p REPLY
p 20 hours ago
p Impeccable timing. I just finished watching The Imitation Game not even 10 minutes before seeing this on my feed.
p 25
p REPLY
p 16 hours ago
p I think I’ll write my next backend web server in HTML and CSS
p 23
p REPLY
p Neo Mind
p 20 hours ago
p Well that was an unexpected cliffhanger!!
p 24
p REPLY
p Eric
p 21 hours ago
p HTML + CSS is Turing complete. Thanks for making me realize this
p 149
p REPLY
p Imerence
p 18 minutes ago
p This has been the most bizarre, mind blowing, shocking plot twist I've ever experienced.
.tab-content
.row
.column
h4 Achilles Gaston Sévère
img.circular--square(src='https://source.unsplash.com/301x301/?face,mature' alt="face").column.is-6
p
| Achilles Gaston Sévère as adjunct professor at Harvard University.
| Thier research deals with mass communication and culture, as well
| as AI relations on college campuses . They have written more than
| two dozen books about these topics which have been translated into
| numerous languages around the world including Mandarin Chinese by
| Professor Xie Lianfeng from Fudan University of Beijing.
.tab-content
.row
.column
h4 Django Crypto
p
| Ready to take your crypto investing game up a notch? Introducing the
| Django-cryptocurrencies web wallet for Bitcoin and a few other cryptocurrencies.
| This sleek, intuitive site will have you invested in no time!
p
| Have a 9-to-5 but still want access to your cryptocurrency? No problem! The
| interface of our site has been optimized for mobile devices so checking balances,
| sending coins, or withdrawing them from your account can be done anytime anywhere
| -- and quickly too!
.column.is-4.--text-centered
img.circular--square(src='https://source.unsplash.com/300x300/?python,code' alt="python code")
section
.container
.columns
.column
div(
class="lg:p-8",
x-data="alpineInstance()",
x-init="fetch('https://jsonplaceholder.typicode.com/users')\
.then(response => response.json())\
.then(data => users = data)"
)
h1(x-text="title")
p(x-html="intro")
.columns
// begin: user card
template(x-for="user in users", :key="user.id")
.column.is-third
.highlight.cursor-pointer(style="--my:5px; --levitate:4;--levitate-hvr:8; --br:0.4rem")
.card(style="--px:1rem")
h4.truncate(x-text="user.name")
h6.truncate.uppercase(x-text="user.company.name")
div(x-text="user.phone")
a.text-blue-600.mr-4.block(
class="hover:text-blue-700",
x-bind:href="'mailto:' + user.email",
x-text="user.email"
)
a.text-blue-600.block(
class="hover:text-blue-700",
x-bind:href="'https://' + user.website",
x-text="user.website"
)
// end: user card
.row
.column.notification.is-success
p.notification.is-info footer