Skip to content

Commit 6e3a915

Browse files
committed
docs: update links to documentation
1 parent c7e0ce8 commit 6e3a915

File tree

4 files changed

+34
-34
lines changed

4 files changed

+34
-34
lines changed

src/views/base/Accordion.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<p class="text-medium-emphasis small">
1010
Click the accordions below to expand/collapse the accordion content.
1111
</p>
12-
<DocsExample href="components/accordion">
12+
<DocsExample href="components/accordion.html">
1313
<CAccordion>
1414
<CAccordionItem :item-key="1">
1515
<CAccordionHeader> Accordion Item #1 </CAccordionHeader>
@@ -68,7 +68,7 @@
6868
corners to render accordions edge-to-edge with their parent
6969
container.
7070
</p>
71-
<DocsExample href="components/accordion#flush">
71+
<DocsExample href="components/accordion.html#flush">
7272
<CAccordion flush>
7373
<CAccordionItem>
7474
<CAccordionHeader> Accordion Item #1 </CAccordionHeader>
@@ -125,7 +125,7 @@
125125
Add <code>always-open</code> property to make accordion items stay
126126
open when another item is opened.
127127
</p>
128-
<DocsExample href="components/accordion#always-open">
128+
<DocsExample href="components/accordion.html#always-open">
129129
<CAccordion :active-item-key="2" always-open>
130130
<CAccordionItem :item-key="1">
131131
<CAccordionHeader> Accordion Item #1 </CAccordionHeader>

src/views/base/Breadcrumbs.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</a>
2121
.
2222
</p>
23-
<DocsExample href="components/breadcrumb">
23+
<DocsExample href="components/breadcrumb.html">
2424
<CBreadcrumb>
2525
<CBreadcrumbItem>
2626
<CLink href="#">Home</CLink>

src/views/base/Cards.vue

+24-24
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
width. Cards have no fixed width to start, so they&#39;ll naturally
2424
fill the full width of its parent element.
2525
</p>
26-
<DocsExample href="components/card">
26+
<DocsExample href="components/card.html">
2727
<CCard style="width: 18rem">
2828
<CCardImage orientation="top" :src="VueImg" />
2929
<CCardBody>
@@ -47,7 +47,7 @@
4747
The main block of a card is the <code>&lt;CCardBody&gt;</code>. Use
4848
it whenever you need a padded section within a card.
4949
</p>
50-
<DocsExample href="components/card/#body">
50+
<DocsExample href="components/card.html/#body">
5151
<CCard>
5252
<CCardBody>This is some text within a card body.</CCardBody>
5353
</CCard>
@@ -76,7 +76,7 @@
7676
<code>&lt;CCardBody&gt;</code> item, the card title, and subtitle
7777
are arranged rightly.
7878
</p>
79-
<DocsExample href="components/card/#titles-text-and-links">
79+
<DocsExample href="components/card.html/#titles-text-and-links">
8080
<CCard style="width: 18rem">
8181
<CCardBody>
8282
<CCardTitle>Card title</CCardTitle>
@@ -105,7 +105,7 @@
105105
within <code>.card-text</code> can additionally be styled with the
106106
regular HTML tags.
107107
</p>
108-
<DocsExample href="components/card/#images">
108+
<DocsExample href="components/card.html/#images">
109109
<CCard style="width: 18rem">
110110
<CCardImage orientation="top" :src="VueImg" />
111111
<CCardBody>
@@ -128,7 +128,7 @@
128128
<p class="text-medium-emphasis small">
129129
Create lists of content in a card with a flush list group.
130130
</p>
131-
<DocsExample href="components/card/#list-groups">
131+
<DocsExample href="components/card.html/#list-groups">
132132
<CRow>
133133
<CCol :lg="4">
134134
<CCard>
@@ -175,7 +175,7 @@
175175
throw everything in there. Shown below are image styles, blocks,
176176
text styles, and a list group—all wrapped in a fixed-width card.
177177
</p>
178-
<DocsExample href="components/card/#kitchen-sink">
178+
<DocsExample href="components/card.html/#kitchen-sink">
179179
<CCard style="width: 18rem">
180180
<CCardImage orientation="top" :src="VueImg" />
181181
<CCardBody>
@@ -208,7 +208,7 @@
208208
<p class="text-medium-emphasis small">
209209
Add an optional header and/or footer within a card.
210210
</p>
211-
<DocsExample href="components/card/#header-and-footer">
211+
<DocsExample href="components/card.html/#header-and-footer">
212212
<CCard>
213213
<CCardHeader>Header</CCardHeader>
214214
<CCardBody>
@@ -225,7 +225,7 @@
225225
Card headers can be styled by adding ex.
226226
<code>component=&#34;h5&#34;</code>.
227227
</p>
228-
<DocsExample href="components/card/#header-and-footer">
228+
<DocsExample href="components/card.html/#header-and-footer">
229229
<CCard>
230230
<CCardHeader component="h5">Header</CCardHeader>
231231
<CCardBody>
@@ -238,7 +238,7 @@
238238
</CCardBody>
239239
</CCard>
240240
</DocsExample>
241-
<DocsExample href="components/card/#header-and-footer">
241+
<DocsExample href="components/card.html/#header-and-footer">
242242
<CCard>
243243
<CCardHeader>Quote</CCardHeader>
244244
<CCardBody>
@@ -255,7 +255,7 @@
255255
</CCardBody>
256256
</CCard>
257257
</DocsExample>
258-
<DocsExample href="components/card/#header-and-footer">
258+
<DocsExample href="components/card.html/#header-and-footer">
259259
<CCard class="text-center">
260260
<CCardHeader>Header</CCardHeader>
261261
<CCardBody>
@@ -286,7 +286,7 @@
286286
<p class="text-medium-emphasis small">
287287
Using the grid, wrap cards in columns and rows as needed.
288288
</p>
289-
<DocsExample href="components/card/#sizing">
289+
<DocsExample href="components/card.html/#sizing">
290290
<CRow>
291291
<CCol :sm="6">
292292
<CCard>
@@ -322,7 +322,7 @@
322322
>
323323
to rapidly set a card&#39;s width.
324324
</p>
325-
<DocsExample href="components/card/#sizing">
325+
<DocsExample href="components/card.html/#sizing">
326326
<CCard class="w-75">
327327
<CCardBody>
328328
<CCardTitle>Card title</CCardTitle>
@@ -349,7 +349,7 @@
349349
Use custom CSS in your stylesheets or as inline styles to set a
350350
width.
351351
</p>
352-
<DocsExample href="components/card/#sizing">
352+
<DocsExample href="components/card.html/#sizing">
353353
<CCard style="width: 18rem">
354354
<CCardBody>
355355
<CCardTitle>Special title treatment</CCardTitle>
@@ -378,7 +378,7 @@
378378
>
379379
.
380380
</p>
381-
<DocsExample href="components/card/#text-alignment">
381+
<DocsExample href="components/card.html/#text-alignment">
382382
<CCard style="width: 18rem">
383383
<CCardBody>
384384
<CCardTitle>Special title treatment</CCardTitle>
@@ -423,7 +423,7 @@
423423
Add some navigation to a <code>&lt;CCardHeader&gt;</code> with our
424424
<code>&lt;CNav&gt;</code> component.
425425
</p>
426-
<DocsExample href="components/card/##navigation">
426+
<DocsExample href="components/card.html/##navigation">
427427
<CCard class="text-center">
428428
<CCardHeader>
429429
<CNav variant="tabs" class="card-header-tabs">
@@ -448,7 +448,7 @@
448448
</CCardBody>
449449
</CCard>
450450
</DocsExample>
451-
<DocsExample href="components/card/##navigation">
451+
<DocsExample href="components/card.html/##navigation">
452452
<CCard class="text-center">
453453
<CCardHeader>
454454
<CNav variant="pills" class="card-header-pills">
@@ -486,7 +486,7 @@
486486
Similar to headers and footers, cards can include top and bottom
487487
&#34;image caps&#34;—images at the top or bottom of a card.
488488
</p>
489-
<DocsExample href="components/card/#image-caps">
489+
<DocsExample href="components/card.html/#image-caps">
490490
<CRow>
491491
<CCol :lg="6">
492492
<CCard class="mb-3">
@@ -543,7 +543,7 @@
543543
<p class="text-medium-emphasis small">
544544
Use <code>color</code> property to change the appearance of a card.
545545
</p>
546-
<DocsExample href="components/card/#background-and-color">
546+
<DocsExample href="components/card.html/#background-and-color">
547547
<CRow>
548548
<template
549549
v-for="item in [
@@ -594,7 +594,7 @@
594594
<code>&lt;CCard&gt;</code> or a subset of the card&#39;s contents as
595595
shown below.
596596
</p>
597-
<DocsExample href="components/card/#border">
597+
<DocsExample href="components/card.html/#border">
598598
<template
599599
v-for="item in [
600600
{ color: 'primary', textColor: 'primary' },
@@ -636,7 +636,7 @@
636636
<code>&lt;CCard&gt;</code> or a subset of the card&#39;s contents as
637637
shown below.
638638
</p>
639-
<DocsExample href="components/card/#top-border">
639+
<DocsExample href="components/card.html/#top-border">
640640
<template
641641
v-for="item in [
642642
{ color: 'primary', textColor: 'primary' },
@@ -682,7 +682,7 @@
682682
use <code>display: flex;</code> to become attached with uniform
683683
dimensions starting at the <code>sm</code> breakpoint.
684684
</p>
685-
<DocsExample href="components/card/#card-groups">
685+
<DocsExample href="components/card.html/#card-groups">
686686
<CCardGroup>
687687
<CCard>
688688
<CCardImage orientation="top" :src="VueImg" />
@@ -737,7 +737,7 @@
737737
When using card groups with footers, their content will
738738
automatically line up.
739739
</p>
740-
<DocsExample href="components/card/#card-groups">
740+
<DocsExample href="components/card.html/#card-groups">
741741
<CCardGroup>
742742
<CCard>
743743
<CCardImage orientation="top" :src="VueImg" />
@@ -807,7 +807,7 @@
807807
cards to equal width across multiple rows, from the medium
808808
breakpoint up.
809809
</p>
810-
<DocsExample href="components/card/#grid-cards">
810+
<DocsExample href="components/card.html/#grid-cards">
811811
<CRow :xs="{ cols: 1, gutter: 4 }" :md="{ cols: 2 }">
812812
<CCol xs>
813813
<CCard>
@@ -887,7 +887,7 @@
887887
Change it to <code>md="&#123; cols: 3&#125;"</code> and you&#39;ll
888888
see the fourth card wrap.
889889
</p>
890-
<DocsExample href="components/card/#grid-cards">
890+
<DocsExample href="components/card.html/#grid-cards">
891891
<CRow :xs="{ cols: 1, gutter: 4 }" :md="{ cols: 3 }">
892892
<CCol xs>
893893
<CCard>

src/views/base/Placeholders.vue

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
it with placeholders applied to create a "loading card". Size and
1212
proportions are the same between the two.
1313
</p>
14-
<DocsExample href="components/placeholder">
14+
<DocsExample href="components/placeholder.html">
1515
<div class="d-flex justify-content-around">
1616
<CCard style="width: 18rem">
1717
<CCardImage orientation="top" :src="VueImg" />
@@ -75,7 +75,7 @@
7575
replace the text inside an element or be added as a modifier class
7676
to an existing component.
7777
</p>
78-
<DocsExample href="components/placeholder">
78+
<DocsExample href="components/placeholder.html">
7979
<p aria-hidden="true">
8080
<CPlaceholder :xs="6" />
8181
</p>
@@ -99,7 +99,7 @@
9999
You can change the <code>width</code> through grid column classes,
100100
width utilities, or inline styles.
101101
</p>
102-
<DocsExample href="components/placeholder#width">
102+
<DocsExample href="components/placeholder.html#width">
103103
<CPlaceholder :xs="6" />
104104
<CPlaceholder class="w-75" />
105105
<CPlaceholder style="width: 30%" />
@@ -116,7 +116,7 @@
116116
<code>currentColor</code>. This can be overridden with a custom
117117
color or utility class.
118118
</p>
119-
<DocsExample href="components/placeholder#color">
119+
<DocsExample href="components/placeholder.html#color">
120120
<CPlaceholder :xs="12" />
121121

122122
<CPlaceholder color="primary" :xs="12" />
@@ -141,7 +141,7 @@
141141
<code>size</code> prop: <code>lg</code>, <code>sm</code>, or
142142
<code>xs</code>.
143143
</p>
144-
<DocsExample href="components/placeholder#color">
144+
<DocsExample href="components/placeholder.html#color">
145145
<CPlaceholder :xs="12" size="lg" />
146146
<CPlaceholder :xs="12" />
147147
<CPlaceholder :xs="12" size="sm" />
@@ -159,7 +159,7 @@
159159
<code>animation="wave"</code> to better convey the perception of
160160
something being <em>actively</em> loaded.
161161
</p>
162-
<DocsExample href="components/placeholder#animation">
162+
<DocsExample href="components/placeholder.html#animation">
163163
<CPlaceholder component="p" animation="glow">
164164
<CPlaceholder :xs="12" />
165165
</CPlaceholder>

0 commit comments

Comments
 (0)