Skip to content

Commit

Permalink
Fix documentation list group image paths
Browse files Browse the repository at this point in the history
  • Loading branch information
tarkhov committed Jul 5, 2020
1 parent b34bf85 commit 274e6e8
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions docs/list-group/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,28 +74,28 @@ <h1 class="h2 fw-400">List group</h1>
<div class="row">
<div class="col-12 col-sm-6 d-sm-flex mb-gutter">
<div class="card w-100">
<div class="card-body d-sm-flex flex-sm-column"><a class="d-block" href="/postboot/list-group/sizes/"><img class="img-fluid extension-image" src="/postboot/assets/img/component/list_group/size.png" width="303px" alt="List group sizes"/></a><a class="extension-name card-title d-block fs-4 fw-500 text-body text-hover-primary text-decoration-none" href="/postboot/list-group/sizes/">Sizes</a>
<div class="card-body d-sm-flex flex-sm-column"><a class="d-block" href="/postboot/list-group/sizes/"><img class="img-fluid extension-image" src="/postboot/assets/img/component/list-group/size.png" width="303px" alt="List group sizes"/></a><a class="extension-name card-title d-block fs-4 fw-500 text-body text-hover-primary text-decoration-none" href="/postboot/list-group/sizes/">Sizes</a>
<p class="card-text">Change list group items padding, font size and border radius by adding class.</p>
</div>
</div>
</div>
<div class="col-12 col-sm-6 d-sm-flex mb-gutter">
<div class="card w-100">
<div class="card-body d-sm-flex flex-sm-column"><a class="d-block" href="/postboot/list-group/item-sizes/"><img class="img-fluid extension-image" src="/postboot/assets/img/component/list_group/item-size.png" width="303px" alt="List group item sizes"/></a><a class="extension-name card-title d-block fs-4 fw-500 text-body text-hover-primary text-decoration-none" href="/postboot/list-group/item-sizes/">Item sizes</a>
<div class="card-body d-sm-flex flex-sm-column"><a class="d-block" href="/postboot/list-group/item-sizes/"><img class="img-fluid extension-image" src="/postboot/assets/img/component/list-group/item-size.png" width="303px" alt="List group item sizes"/></a><a class="extension-name card-title d-block fs-4 fw-500 text-body text-hover-primary text-decoration-none" href="/postboot/list-group/item-sizes/">Item sizes</a>
<p class="card-text">Modify specific list group item padding, border radius, font size by adding class.</p>
</div>
</div>
</div>
<div class="col-12 col-sm-6 d-sm-flex mb-gutter">
<div class="card w-100">
<div class="card-body d-sm-flex flex-sm-column"><a class="d-block" href="/postboot/list-group/horizontal-flush/"><img class="img-fluid extension-image" src="/postboot/assets/img/component/list_group/horizontal-flush.png" width="303px" alt="List group horizontal flush"/></a><a class="extension-name card-title d-block fs-4 fw-500 text-body text-hover-primary text-decoration-none" href="/postboot/list-group/horizontal-flush/">Horizontal flush</a>
<div class="card-body d-sm-flex flex-sm-column"><a class="d-block" href="/postboot/list-group/horizontal-flush/"><img class="img-fluid extension-image" src="/postboot/assets/img/component/list-group/horizontal-flush.png" width="303px" alt="List group horizontal flush"/></a><a class="extension-name card-title d-block fs-4 fw-500 text-body text-hover-primary text-decoration-none" href="/postboot/list-group/horizontal-flush/">Horizontal flush</a>
<p class="card-text">Horizontal list group without top and bottom borders.</p>
</div>
</div>
</div>
<div class="col-12 col-sm-6 d-sm-flex mb-gutter">
<div class="card w-100">
<div class="card-body d-sm-flex flex-sm-column"><a class="d-block" href="/postboot/list-group/striped/"><img class="img-fluid extension-image" src="/postboot/assets/img/component/list_group/striped.png" width="303px" alt="List group striped"/></a><a class="extension-name card-title d-block fs-4 fw-500 text-body text-hover-primary text-decoration-none" href="/postboot/list-group/striped/">Striped</a>
<div class="card-body d-sm-flex flex-sm-column"><a class="d-block" href="/postboot/list-group/striped/"><img class="img-fluid extension-image" src="/postboot/assets/img/component/list-group/striped.png" width="303px" alt="List group striped"/></a><a class="extension-name card-title d-block fs-4 fw-500 text-body text-hover-primary text-decoration-none" href="/postboot/list-group/striped/">Striped</a>
<p class="card-text">Striped list group item colors inspired by table striped component.</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/docs/json/contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@
}
}
},
"list_group": {
"list-group": {
"url": "list-group",
"template": "list-group",
"name": "List group",
Expand Down
4 changes: 2 additions & 2 deletions src/docs/pug/list-group.pug
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extends component.pug

block component_description
+component_description('list_group')
+component_description('list-group')

block component_examples
+component_examples('list_group')
+component_examples('list-group')
2 changes: 1 addition & 1 deletion src/docs/pug/list-group/horizontal-flush.pug
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extends ../example.pug

block example_description
+example_description('list_group', 'horizontal_flush')
+example_description('list-group', 'horizontal_flush')

block example_result
.d-none.d-lg-block
Expand Down
2 changes: 1 addition & 1 deletion src/docs/pug/list-group/item-size.pug
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extends ../example-responsive.pug

block example_description
+example_description('list_group', 'item_size')
+example_description('list-group', 'item_size')

block example_result
.row
Expand Down
2 changes: 1 addition & 1 deletion src/docs/pug/list-group/size.pug
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extends ../example-responsive.pug

block example_description
+example_description('list_group', 'size')
+example_description('list-group', 'size')

block example_result
.row
Expand Down
2 changes: 1 addition & 1 deletion src/docs/pug/list-group/striped.pug
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extends ../example.pug

block example_description
+example_description('list_group', 'striped')
+example_description('list-group', 'striped')

block example_result
.row
Expand Down

0 comments on commit 274e6e8

Please sign in to comment.