|
23 | 23 | width. Cards have no fixed width to start, so they'll naturally |
24 | 24 | fill the full width of its parent element. |
25 | 25 | </p> |
26 | | - <DocsExample href="components/card"> |
| 26 | + <DocsExample href="components/card.html"> |
27 | 27 | <CCard style="width: 18rem"> |
28 | 28 | <CCardImage orientation="top" :src="VueImg" /> |
29 | 29 | <CCardBody> |
|
47 | 47 | The main block of a card is the <code><CCardBody></code>. Use |
48 | 48 | it whenever you need a padded section within a card. |
49 | 49 | </p> |
50 | | - <DocsExample href="components/card/#body"> |
| 50 | + <DocsExample href="components/card.html/#body"> |
51 | 51 | <CCard> |
52 | 52 | <CCardBody>This is some text within a card body.</CCardBody> |
53 | 53 | </CCard> |
|
76 | 76 | <code><CCardBody></code> item, the card title, and subtitle |
77 | 77 | are arranged rightly. |
78 | 78 | </p> |
79 | | - <DocsExample href="components/card/#titles-text-and-links"> |
| 79 | + <DocsExample href="components/card.html/#titles-text-and-links"> |
80 | 80 | <CCard style="width: 18rem"> |
81 | 81 | <CCardBody> |
82 | 82 | <CCardTitle>Card title</CCardTitle> |
|
105 | 105 | within <code>.card-text</code> can additionally be styled with the |
106 | 106 | regular HTML tags. |
107 | 107 | </p> |
108 | | - <DocsExample href="components/card/#images"> |
| 108 | + <DocsExample href="components/card.html/#images"> |
109 | 109 | <CCard style="width: 18rem"> |
110 | 110 | <CCardImage orientation="top" :src="VueImg" /> |
111 | 111 | <CCardBody> |
|
128 | 128 | <p class="text-medium-emphasis small"> |
129 | 129 | Create lists of content in a card with a flush list group. |
130 | 130 | </p> |
131 | | - <DocsExample href="components/card/#list-groups"> |
| 131 | + <DocsExample href="components/card.html/#list-groups"> |
132 | 132 | <CRow> |
133 | 133 | <CCol :lg="4"> |
134 | 134 | <CCard> |
|
175 | 175 | throw everything in there. Shown below are image styles, blocks, |
176 | 176 | text styles, and a list group—all wrapped in a fixed-width card. |
177 | 177 | </p> |
178 | | - <DocsExample href="components/card/#kitchen-sink"> |
| 178 | + <DocsExample href="components/card.html/#kitchen-sink"> |
179 | 179 | <CCard style="width: 18rem"> |
180 | 180 | <CCardImage orientation="top" :src="VueImg" /> |
181 | 181 | <CCardBody> |
|
208 | 208 | <p class="text-medium-emphasis small"> |
209 | 209 | Add an optional header and/or footer within a card. |
210 | 210 | </p> |
211 | | - <DocsExample href="components/card/#header-and-footer"> |
| 211 | + <DocsExample href="components/card.html/#header-and-footer"> |
212 | 212 | <CCard> |
213 | 213 | <CCardHeader>Header</CCardHeader> |
214 | 214 | <CCardBody> |
|
225 | 225 | Card headers can be styled by adding ex. |
226 | 226 | <code>component="h5"</code>. |
227 | 227 | </p> |
228 | | - <DocsExample href="components/card/#header-and-footer"> |
| 228 | + <DocsExample href="components/card.html/#header-and-footer"> |
229 | 229 | <CCard> |
230 | 230 | <CCardHeader component="h5">Header</CCardHeader> |
231 | 231 | <CCardBody> |
|
238 | 238 | </CCardBody> |
239 | 239 | </CCard> |
240 | 240 | </DocsExample> |
241 | | - <DocsExample href="components/card/#header-and-footer"> |
| 241 | + <DocsExample href="components/card.html/#header-and-footer"> |
242 | 242 | <CCard> |
243 | 243 | <CCardHeader>Quote</CCardHeader> |
244 | 244 | <CCardBody> |
|
255 | 255 | </CCardBody> |
256 | 256 | </CCard> |
257 | 257 | </DocsExample> |
258 | | - <DocsExample href="components/card/#header-and-footer"> |
| 258 | + <DocsExample href="components/card.html/#header-and-footer"> |
259 | 259 | <CCard class="text-center"> |
260 | 260 | <CCardHeader>Header</CCardHeader> |
261 | 261 | <CCardBody> |
|
286 | 286 | <p class="text-medium-emphasis small"> |
287 | 287 | Using the grid, wrap cards in columns and rows as needed. |
288 | 288 | </p> |
289 | | - <DocsExample href="components/card/#sizing"> |
| 289 | + <DocsExample href="components/card.html/#sizing"> |
290 | 290 | <CRow> |
291 | 291 | <CCol :sm="6"> |
292 | 292 | <CCard> |
|
322 | 322 | > |
323 | 323 | to rapidly set a card's width. |
324 | 324 | </p> |
325 | | - <DocsExample href="components/card/#sizing"> |
| 325 | + <DocsExample href="components/card.html/#sizing"> |
326 | 326 | <CCard class="w-75"> |
327 | 327 | <CCardBody> |
328 | 328 | <CCardTitle>Card title</CCardTitle> |
|
349 | 349 | Use custom CSS in your stylesheets or as inline styles to set a |
350 | 350 | width. |
351 | 351 | </p> |
352 | | - <DocsExample href="components/card/#sizing"> |
| 352 | + <DocsExample href="components/card.html/#sizing"> |
353 | 353 | <CCard style="width: 18rem"> |
354 | 354 | <CCardBody> |
355 | 355 | <CCardTitle>Special title treatment</CCardTitle> |
|
378 | 378 | > |
379 | 379 | . |
380 | 380 | </p> |
381 | | - <DocsExample href="components/card/#text-alignment"> |
| 381 | + <DocsExample href="components/card.html/#text-alignment"> |
382 | 382 | <CCard style="width: 18rem"> |
383 | 383 | <CCardBody> |
384 | 384 | <CCardTitle>Special title treatment</CCardTitle> |
|
423 | 423 | Add some navigation to a <code><CCardHeader></code> with our |
424 | 424 | <code><CNav></code> component. |
425 | 425 | </p> |
426 | | - <DocsExample href="components/card/##navigation"> |
| 426 | + <DocsExample href="components/card.html/##navigation"> |
427 | 427 | <CCard class="text-center"> |
428 | 428 | <CCardHeader> |
429 | 429 | <CNav variant="tabs" class="card-header-tabs"> |
|
448 | 448 | </CCardBody> |
449 | 449 | </CCard> |
450 | 450 | </DocsExample> |
451 | | - <DocsExample href="components/card/##navigation"> |
| 451 | + <DocsExample href="components/card.html/##navigation"> |
452 | 452 | <CCard class="text-center"> |
453 | 453 | <CCardHeader> |
454 | 454 | <CNav variant="pills" class="card-header-pills"> |
|
486 | 486 | Similar to headers and footers, cards can include top and bottom |
487 | 487 | "image caps"—images at the top or bottom of a card. |
488 | 488 | </p> |
489 | | - <DocsExample href="components/card/#image-caps"> |
| 489 | + <DocsExample href="components/card.html/#image-caps"> |
490 | 490 | <CRow> |
491 | 491 | <CCol :lg="6"> |
492 | 492 | <CCard class="mb-3"> |
|
543 | 543 | <p class="text-medium-emphasis small"> |
544 | 544 | Use <code>color</code> property to change the appearance of a card. |
545 | 545 | </p> |
546 | | - <DocsExample href="components/card/#background-and-color"> |
| 546 | + <DocsExample href="components/card.html/#background-and-color"> |
547 | 547 | <CRow> |
548 | 548 | <template |
549 | 549 | v-for="item in [ |
|
594 | 594 | <code><CCard></code> or a subset of the card's contents as |
595 | 595 | shown below. |
596 | 596 | </p> |
597 | | - <DocsExample href="components/card/#border"> |
| 597 | + <DocsExample href="components/card.html/#border"> |
598 | 598 | <template |
599 | 599 | v-for="item in [ |
600 | 600 | { color: 'primary', textColor: 'primary' }, |
|
636 | 636 | <code><CCard></code> or a subset of the card's contents as |
637 | 637 | shown below. |
638 | 638 | </p> |
639 | | - <DocsExample href="components/card/#top-border"> |
| 639 | + <DocsExample href="components/card.html/#top-border"> |
640 | 640 | <template |
641 | 641 | v-for="item in [ |
642 | 642 | { color: 'primary', textColor: 'primary' }, |
|
682 | 682 | use <code>display: flex;</code> to become attached with uniform |
683 | 683 | dimensions starting at the <code>sm</code> breakpoint. |
684 | 684 | </p> |
685 | | - <DocsExample href="components/card/#card-groups"> |
| 685 | + <DocsExample href="components/card.html/#card-groups"> |
686 | 686 | <CCardGroup> |
687 | 687 | <CCard> |
688 | 688 | <CCardImage orientation="top" :src="VueImg" /> |
|
737 | 737 | When using card groups with footers, their content will |
738 | 738 | automatically line up. |
739 | 739 | </p> |
740 | | - <DocsExample href="components/card/#card-groups"> |
| 740 | + <DocsExample href="components/card.html/#card-groups"> |
741 | 741 | <CCardGroup> |
742 | 742 | <CCard> |
743 | 743 | <CCardImage orientation="top" :src="VueImg" /> |
|
807 | 807 | cards to equal width across multiple rows, from the medium |
808 | 808 | breakpoint up. |
809 | 809 | </p> |
810 | | - <DocsExample href="components/card/#grid-cards"> |
| 810 | + <DocsExample href="components/card.html/#grid-cards"> |
811 | 811 | <CRow :xs="{ cols: 1, gutter: 4 }" :md="{ cols: 2 }"> |
812 | 812 | <CCol xs> |
813 | 813 | <CCard> |
|
887 | 887 | Change it to <code>md="{ cols: 3}"</code> and you'll |
888 | 888 | see the fourth card wrap. |
889 | 889 | </p> |
890 | | - <DocsExample href="components/card/#grid-cards"> |
| 890 | + <DocsExample href="components/card.html/#grid-cards"> |
891 | 891 | <CRow :xs="{ cols: 1, gutter: 4 }" :md="{ cols: 3 }"> |
892 | 892 | <CCol xs> |
893 | 893 | <CCard> |
|
0 commit comments