-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplayground.qmd
76 lines (48 loc) · 1.28 KB
/
playground.qmd
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
---
title: Playground
---
## Accordion
::: {.accordion}
::: {.accordion-item}
::: {.accordion-button type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne"}
Accordion Item #1
:::
::: {#collapseOne .accordion-collapse .collapse .show aria-labelledby="headingOne" data-bs-parent="#accordionExample"}
::: {.accordion-body}
This is the body
:::
:::
:::
:::
## Buttons
[Primary Button]{.btn .btn-primary}
::: {.btn-group role="group" aria-label="Basic mixed styles example"}
[Left]{.btn .btn-danger}
[Middle]{.btn .btn-warning}
[Right]{.btn .btn-success}
:::
## Cards
::: {.card-group}
::: {.card}
![](./img/GSOTrip.jpg){.card-img-top}
::: {.card-body}
##### Card Title {.card-title}
Some quick example text to build on the card title and make up the bulk of the card's content.
[Learn More]{.btn .btn-primary}
:::
:::
::: {.card}
![](./img/GSOTrip.jpg){.card-img-top}
::: {.card-body}
##### Card Title {.card-title}
Some quick example text to build on the card title and make up the bulk of the card's content.
:::
:::
::: {.card}
![](./img/GSOTrip.jpg){.card-img-top}
::: {.card-body}
##### Card Title {.card-title}
Some quick example text to build on the card title and make up the bulk of the card's content.
:::
:::
:::