diff options
| author | Mark Otto <[email protected]> | 2013-03-31 22:58:01 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-03-31 22:58:01 -0700 |
| commit | d8b3e48e1450bc0c49548c6cbd1139f7910b1c00 (patch) | |
| tree | c32c4003249b79146954335d9a53836e380c7ed9 /docs/docs.html | |
| parent | 2f8deea95ac246455a11511963ded2b63e963922 (diff) | |
| download | bootstrap-d8b3e48e1450bc0c49548c6cbd1139f7910b1c00.tar.xz bootstrap-d8b3e48e1450bc0c49548c6cbd1139f7910b1c00.zip | |
add proper markup to list group in panels section
Diffstat (limited to 'docs/docs.html')
| -rw-r--r-- | docs/docs.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/docs.html b/docs/docs.html index 94826ffde..ad944f630 100644 --- a/docs/docs.html +++ b/docs/docs.html @@ -4627,8 +4627,18 @@ For example, <code><section></code> should be wrapped as inline. </div> {% highlight html linenos %} <div class="panel"> + <!-- Default panel contents --> <div class="panel-heading">Panel heading</div> - Panel content + <p>...</p> + + <!-- List group --> + <ul class="list-group list-group-flush"> + <li class="list-group-item">Cras justo odio</li> + <li class="list-group-item">Dapibus ac facilisis in</li> + <li class="list-group-item">Morbi leo risus</li> + <li class="list-group-item">Porta ac consectetur ac</li> + <li class="list-group-item">Vestibulum at eros</li> + </ul> </div> {% endhighlight %} |
