1
1
mirror of https://github.com/primer/css.git synced 2024-11-13 08:04:16 +03:00

remove breadcrumb code blocks for testing

This commit is contained in:
Shawn Allen 2017-09-15 15:54:11 -06:00
parent e02bd53b77
commit fd40089188

View File

@ -22,7 +22,7 @@ Breadcrumbs are used to show taxonomical context on pages that are many levels d
#### Usage
```html title="This is breadcrumb!"
```html title="Breadcrumb"
<nav aria-label="Breadcrumb">
<ol>
<li class="breadcrumb-item text-small"><a href="/business">Business</a></li>
@ -32,38 +32,6 @@ Breadcrumbs are used to show taxonomical context on pages that are many levels d
</nav>
```
#### Another example
```html
<nav aria-label="Breadcrumb">
<ol>
<li class="breadcrumb-item text-small"><a href="/business">One</a></li>
<li class="breadcrumb-item text-small"><a href="/business/customers">Two</a></li>
<li class="breadcrumb-item breadcrumb-item-selected text-small text-gray" aria-current="page">Three</li>
</ol>
</nav>
```
```html note="this should get the default title"
<nav aria-label="Breadcrumb">
<ol>
<li class="breadcrumb-item text-small"><a href="/business">A</a></li>
<li class="breadcrumb-item text-small"><a href="/business/customers">B</a></li>
<li class="breadcrumb-item breadcrumb-item-selected text-small text-gray" aria-current="page">C</li>
</ol>
</nav>
```
```html title="this should NOT show up" story=false
<nav aria-label="Breadcrumb">
<ol>
<li class="breadcrumb-item text-small"><a href="/business">A</a></li>
<li class="breadcrumb-item text-small"><a href="/business/customers">B</a></li>
<li class="breadcrumb-item breadcrumb-item-selected text-small text-gray" aria-current="page">C</li>
</ol>
</nav>
```
<!-- %enddocs -->
## License