Policy 1707 commit to LF
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / CSS / bootstrap / docs / _includes / components / breadcrumbs.html
1 <div class="bs-docs-section">
2   <h1 id="breadcrumbs" class="page-header">Breadcrumbs</h1>
3
4   <p class="lead">Indicate the current page's location within a navigational hierarchy.</p>
5   <p>Separators are automatically added in CSS through <code>:before</code> and <code>content</code>.</p>
6   <div class="bs-example" data-example-id="simple-breadcrumbs">
7     <ol class="breadcrumb">
8       <li class="active">Home</li>
9     </ol>
10     <ol class="breadcrumb">
11       <li><a href="#">Home</a></li>
12       <li class="active">Library</li>
13     </ol>
14     <ol class="breadcrumb">
15       <li><a href="#">Home</a></li>
16       <li><a href="#">Library</a></li>
17       <li class="active">Data</li>
18     </ol>
19   </div>
20 {% highlight html %}
21 <ol class="breadcrumb">
22   <li><a href="#">Home</a></li>
23   <li><a href="#">Library</a></li>
24   <li class="active">Data</li>
25 </ol>
26 {% endhighlight %}
27 </div>