Policy 1707 commit to LF
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / CSS / bootstrap / docs / _includes / components / navbar.html
1 <div class="bs-docs-section">
2   <h1 id="navbar" class="page-header">Navbar</h1>
3
4   <h2 id="navbar-default">Default navbar</h2>
5   <p>Navbars are responsive meta components that serve as navigation headers for your application or site. They begin collapsed (and are toggleable) in mobile views and become horizontal as the available viewport width increases.</p>
6   <p><strong class="text-danger">Justified navbar nav links are currently not supported.</strong></p>
7
8   <div class="bs-callout bs-callout-warning" id="callout-navbar-overflow">
9     <h4>Overflowing content</h4>
10     <p>Since Bootstrap doesn't know how much space the content in your navbar needs, you might run into issues with content wrapping into a second row. To resolve this, you can:</p>
11     <ol type="a">
12       <li>Reduce the amount or width of navbar items.</li>
13       <li>Hide certain navbar items at certain screen sizes using <a href="../css/#responsive-utilities">responsive utility classes</a>.</li>
14       <li>Change the point at which your navbar switches between collapsed and horizontal mode. Customize the <code>@grid-float-breakpoint</code> variable or add your own media query.</li>
15     </ol>
16   </div>
17   <div class="bs-callout bs-callout-danger" id="callout-navbar-js">
18     <h4>Requires JavaScript plugin</h4>
19     <p>If JavaScript is disabled and the viewport is narrow enough that the navbar collapses, it will be impossible to expand the navbar and view the content within the <code>.navbar-collapse</code>.</p>
20     <p>The responsive navbar requires the <a href="../javascript/#collapse">collapse plugin</a> to be included in your version of Bootstrap.</p>
21   </div>
22   <div class="bs-callout bs-callout-info" id="callout-navbar-breakpoint">
23     <h4>Changing the collapsed mobile navbar breakpoint</h4>
24     <p>The navbar collapses into its vertical mobile view when the viewport is narrower than <code>@grid-float-breakpoint</code>, and expands into its horizontal non-mobile view when the viewport is at least <code>@grid-float-breakpoint</code> in width. Adjust this variable in the Less source to control when the navbar collapses/expands. The default value is <code>768px</code> (the smallest "small" or "tablet" screen).</p>
25   </div>
26   <div class="bs-callout bs-callout-warning" id="callout-navbar-role">
27     <h4>Make navbars accessible</h4>
28     <p>Be sure to use a <code>&lt;nav&gt;</code> element or, if using a more generic element such as a <code>&lt;div&gt;</code>, add a <code>role="navigation"</code> to every navbar to explicitly identify it as a landmark region for users of assistive technologies.</p>
29   </div>
30
31   <div class="bs-example" data-example-id="default-navbar">
32     <nav class="navbar navbar-default">
33       <div class="container-fluid">
34         <!-- Brand and toggle get grouped for better mobile display -->
35         <div class="navbar-header">
36           <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
37             <span class="sr-only">Toggle navigation</span>
38             <span class="icon-bar"></span>
39             <span class="icon-bar"></span>
40             <span class="icon-bar"></span>
41           </button>
42           <a class="navbar-brand" href="#">Brand</a>
43         </div>
44
45         <!-- Collect the nav links, forms, and other content for toggling -->
46         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
47           <ul class="nav navbar-nav">
48             <li class="active"><a href="#">Link <span class="sr-only">(current)</span></a></li>
49             <li><a href="#">Link</a></li>
50             <li class="dropdown">
51               <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Dropdown <span class="caret"></span></a>
52               <ul class="dropdown-menu" role="menu">
53                 <li><a href="#">Action</a></li>
54                 <li><a href="#">Another action</a></li>
55                 <li><a href="#">Something else here</a></li>
56                 <li class="divider"></li>
57                 <li><a href="#">Separated link</a></li>
58                 <li class="divider"></li>
59                 <li><a href="#">One more separated link</a></li>
60               </ul>
61             </li>
62           </ul>
63           <form class="navbar-form navbar-left" role="search">
64             <div class="form-group">
65               <input type="text" class="form-control" placeholder="Search">
66             </div>
67             <button type="submit" class="btn btn-default">Submit</button>
68           </form>
69           <ul class="nav navbar-nav navbar-right">
70             <li><a href="#">Link</a></li>
71             <li class="dropdown">
72               <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Dropdown <span class="caret"></span></a>
73               <ul class="dropdown-menu" role="menu">
74                 <li><a href="#">Action</a></li>
75                 <li><a href="#">Another action</a></li>
76                 <li><a href="#">Something else here</a></li>
77                 <li class="divider"></li>
78                 <li><a href="#">Separated link</a></li>
79               </ul>
80             </li>
81           </ul>
82         </div><!-- /.navbar-collapse -->
83       </div><!-- /.container-fluid -->
84     </nav>
85   </div>
86 {% highlight html %}
87 <nav class="navbar navbar-default">
88   <div class="container-fluid">
89     <!-- Brand and toggle get grouped for better mobile display -->
90     <div class="navbar-header">
91       <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
92         <span class="sr-only">Toggle navigation</span>
93         <span class="icon-bar"></span>
94         <span class="icon-bar"></span>
95         <span class="icon-bar"></span>
96       </button>
97       <a class="navbar-brand" href="#">Brand</a>
98     </div>
99
100     <!-- Collect the nav links, forms, and other content for toggling -->
101     <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
102       <ul class="nav navbar-nav">
103         <li class="active"><a href="#">Link <span class="sr-only">(current)</span></a></li>
104         <li><a href="#">Link</a></li>
105         <li class="dropdown">
106           <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Dropdown <span class="caret"></span></a>
107           <ul class="dropdown-menu" role="menu">
108             <li><a href="#">Action</a></li>
109             <li><a href="#">Another action</a></li>
110             <li><a href="#">Something else here</a></li>
111             <li class="divider"></li>
112             <li><a href="#">Separated link</a></li>
113             <li class="divider"></li>
114             <li><a href="#">One more separated link</a></li>
115           </ul>
116         </li>
117       </ul>
118       <form class="navbar-form navbar-left" role="search">
119         <div class="form-group">
120           <input type="text" class="form-control" placeholder="Search">
121         </div>
122         <button type="submit" class="btn btn-default">Submit</button>
123       </form>
124       <ul class="nav navbar-nav navbar-right">
125         <li><a href="#">Link</a></li>
126         <li class="dropdown">
127           <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Dropdown <span class="caret"></span></a>
128           <ul class="dropdown-menu" role="menu">
129             <li><a href="#">Action</a></li>
130             <li><a href="#">Another action</a></li>
131             <li><a href="#">Something else here</a></li>
132             <li class="divider"></li>
133             <li><a href="#">Separated link</a></li>
134           </ul>
135         </li>
136       </ul>
137     </div><!-- /.navbar-collapse -->
138   </div><!-- /.container-fluid -->
139 </nav>
140 {% endhighlight %}
141
142
143   <h2 id="navbar-brand-image">Brand image</h2>
144   <p>Replace the navbar brand with your own image by swapping the text for an <code>&lt;img&gt;</code>. Since the <code>.navbar-brand</code> has its own padding and height, you may need to override some CSS depending on your image.</p>
145   <div class="bs-example" data-example-id="navbar-with-image-brand">
146     <nav class="navbar navbar-default">
147       <div class="container-fluid">
148         <div class="navbar-header">
149           <a class="navbar-brand" href="#">
150             <img alt="Brand" width="20" height="20" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAA81BMVEX///9VPnxWPXxWPXxWPXxWPXxWPXxWPXz///9hSYT6+vuFc6BXPn37+vz8+/z9/f2LeqWMe6aOfqiTg6uXiK5bQ4BZQX9iS4VdRYFdRYJfSINuWI5vWY9xXJF0YJR3Y5Z4ZZd5ZZd6Z5h9apq0qcW1qsW1q8a6sMqpnLyrn76tocCvpMGwpMJoUoprVYxeRoJjS4abjLGilLemmbrDutDFvdLPx9nX0eDa1OLb1uPd1+Td2OXe2eXh3Ofj3+nk4Orl4evp5u7u7PLv7fPx7/T08vb08/f19Pf29Pj39vn6+fuEcZ9YP35aQn/8/P1ZQH5fR4PINAOdAAAAB3RSTlMAIWWOw/P002ipnAAAAPhJREFUeF6NldWOhEAUBRvtRsfdfd3d3e3/v2ZPmGSWZNPDqScqqaSBSy4CGJbtSi2ubRkiwXRkBo6ZdJIApeEwoWMIS1JYwuZCW7hc6ApJkgrr+T/eW1V9uKXS5I5GXAjW2VAV9KFfSfgJpk+w4yXhwoqwl5AIGwp4RPgdK3XNHD2ETYiwe6nUa18f5jYSxle4vulw7/EtoCdzvqkPv3bn7M0eYbc7xFPXzqCrRCgH0Hsm/IjgTSb04W0i7EGjz+xw+wR6oZ1MnJ9TWrtToEx+4QfcZJ5X6tnhw+nhvqebdVhZUJX/oFcKvaTotUcvUnY188ue/n38AunzPPE8yg7bAAAAAElFTkSuQmCC">
151           </a>
152         </div>
153       </div>
154     </nav>
155   </div>
156 {% highlight html %}
157 <nav class="navbar navbar-default">
158   <div class="container-fluid">
159     <div class="navbar-header">
160       <a class="navbar-brand" href="#">
161         <img alt="Brand" src="...">
162       </a>
163     </div>
164   </div>
165 </nav>
166 {% endhighlight %}
167
168
169   <h2 id="navbar-forms">Forms</h2>
170   <p>Place form content within <code>.navbar-form</code> for proper vertical alignment and collapsed behavior in narrow viewports. Use the alignment options to decide where it resides within the navbar content.</p>
171   <p>As a heads up, <code>.navbar-form</code> shares much of its code with <code>.form-inline</code> via mixin. <strong class="text-danger">Some form controls, like input groups, may require fixed widths to be show up properly within a navbar.</strong></p>
172   <div class="bs-example" data-example-id="navbar-form">
173     <nav class="navbar navbar-default">
174       <div class="container-fluid">
175         <div class="navbar-header">
176           <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-2">
177             <span class="sr-only">Toggle navigation</span>
178             <span class="icon-bar"></span>
179             <span class="icon-bar"></span>
180             <span class="icon-bar"></span>
181           </button>
182           <a class="navbar-brand" href="#">Brand</a>
183         </div>
184         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-2">
185           <form class="navbar-form navbar-left" role="search">
186             <div class="form-group">
187               <input type="text" class="form-control" placeholder="Search">
188             </div>
189             <button type="submit" class="btn btn-default">Submit</button>
190           </form>
191         </div>
192       </div>
193     </nav>
194   </div>
195 {% highlight html %}
196 <form class="navbar-form navbar-left" role="search">
197   <div class="form-group">
198     <input type="text" class="form-control" placeholder="Search">
199   </div>
200   <button type="submit" class="btn btn-default">Submit</button>
201 </form>
202 {% endhighlight %}
203
204   <div class="bs-callout bs-callout-warning" id="callout-navbar-mobile-caveats">
205     <h4>Mobile device caveats</h4>
206     <p>There are some caveats regarding using form controls within fixed elements on mobile devices. <a href="../getting-started/#support-fixed-position-keyboards">See our browser support docs</a> for details.</p>
207   </div>
208
209   <div class="bs-callout bs-callout-warning" id="callout-navbar-form-labels">
210     <h4>Always add labels</h4>
211     <p>Screen readers will have trouble with your forms if you don't include a label for every input. For these inline forms, you can hide the labels using the <code>.sr-only</code> class. There are further alternative methods of providing a label for assistive technologies, such as the <code>aria-label</code>, <code>aria-labelledby</code> or <code>title</code> attribute. If none of these is present, screen readers may resort to using the <code>placeholder</code> attribute, if present, but note that use of <code>placeholder</code> as a replacement for other labelling methods is not advised.</p>
212   </div>
213
214
215   <h2 id="navbar-buttons">Buttons</h2>
216   <p>Add the <code>.navbar-btn</code> class to <code>&lt;button&gt;</code> elements not residing in a <code>&lt;form&gt;</code> to vertically center them in the navbar.</p>
217   <div class="bs-example" data-example-id="navbar-button">
218     <nav class="navbar navbar-default">
219       <div class="container-fluid">
220         <div class="navbar-header">
221           <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-3">
222             <span class="sr-only">Toggle navigation</span>
223             <span class="icon-bar"></span>
224             <span class="icon-bar"></span>
225             <span class="icon-bar"></span>
226           </button>
227           <a class="navbar-brand" href="#">Brand</a>
228         </div>
229         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-3">
230           <button type="button" class="btn btn-default navbar-btn">Sign in</button>
231         </div>
232       </div>
233     </nav>
234   </div>
235 {% highlight html %}
236 <button type="button" class="btn btn-default navbar-btn">Sign in</button>
237 {% endhighlight %}
238
239   <div class="bs-callout bs-callout-warning" id="callout-navbar-btn-context">
240     <h4>Context-specific usage</h4>
241     <p>Like the standard <a href="../css/#buttons">button classes</a>, <code>.navbar-btn</code> can be used on <code>&lt;a&gt;</code> and <code>&lt;input&gt;</code> elements. However, neither <code>.navbar-btn</code> nor the standard button classes should be used on <code>&lt;a&gt;</code> elements within <code>.navbar-nav</code>.</p>
242   </div>
243
244   <h2 id="navbar-text">Text</h2>
245   <p>Wrap strings of text in an element with <code>.navbar-text</code>, usually on a <code>&lt;p&gt;</code> tag for proper leading and color.</p>
246   <div class="bs-example" data-example-id="navbar-text">
247     <nav class="navbar navbar-default">
248       <div class="container-fluid">
249         <div class="navbar-header">
250           <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-4">
251             <span class="sr-only">Toggle navigation</span>
252             <span class="icon-bar"></span>
253             <span class="icon-bar"></span>
254             <span class="icon-bar"></span>
255           </button>
256           <a class="navbar-brand" href="#">Brand</a>
257         </div>
258         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-4">
259           <p class="navbar-text">Signed in as Mark Otto</p>
260         </div>
261       </div>
262     </nav>
263   </div>
264 {% highlight html %}
265 <p class="navbar-text">Signed in as Mark Otto</p>
266 {% endhighlight %}
267
268
269   <h2 id="navbar-links">Non-nav links</h2>
270   <p>For folks using standard links that are not within the regular navbar navigation component, use the <code>.navbar-link</code> class to add the proper colors for the default and inverse navbar options.</p>
271   <div class="bs-example" data-example-id="navbar-link">
272     <nav class="navbar navbar-default">
273       <div class="container-fluid">
274         <div class="navbar-header">
275           <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-5">
276             <span class="sr-only">Toggle navigation</span>
277             <span class="icon-bar"></span>
278             <span class="icon-bar"></span>
279             <span class="icon-bar"></span>
280           </button>
281           <a class="navbar-brand" href="#">Brand</a>
282         </div>
283         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-5">
284           <p class="navbar-text navbar-right">Signed in as <a href="#" class="navbar-link">Mark Otto</a></p>
285         </div>
286       </div>
287     </nav>
288   </div>
289 {% highlight html %}
290 <p class="navbar-text navbar-right">Signed in as <a href="#" class="navbar-link">Mark Otto</a></p>
291 {% endhighlight %}
292
293
294   <h2 id="navbar-component-alignment">Component alignment</h2>
295   <p>Align nav links, forms, buttons, or text, using the <code>.navbar-left</code> or <code>.navbar-right</code> utility classes. Both classes will add a CSS float in the specified direction. For example, to align nav links, put them in a separate <code>&lt;ul&gt;</code> with the respective utility class applied.</p>
296   <p>These classes are mixin-ed versions of <code>.pull-left</code> and <code>.pull-right</code>, but they're scoped to media queries for easier handling of navbar components across device sizes.</p>
297   <div class="bs-callout bs-callout-warning" id="callout-navbar-right-align">
298     <h4>Right aligning multiple components</h4>
299     <p>Navbars currently have a limitation with multiple <code>.navbar-right</code> classes. To properly space content, we use negative margin on the last <code>.navbar-right</code> element. When there are multiple elements using that class, these margins don't work as intended.</p>
300     <p>We'll revisit this when we can rewrite that component in v4.</p>
301   </div>
302
303
304   <h2 id="navbar-fixed-top">Fixed to top</h2>
305   <p>Add <code>.navbar-fixed-top</code> and include a <code>.container</code> or <code>.container-fluid</code> to center and pad navbar content.</p>
306   <div class="bs-example bs-navbar-top-example" data-example-id="navbar-fixed-to-top">
307     <nav class="navbar navbar-default navbar-fixed-top">
308       <!-- We use the fluid option here to avoid overriding the fixed width of a normal container within the narrow content columns. -->
309       <div class="container-fluid">
310         <div class="navbar-header">
311           <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-6">
312             <span class="sr-only">Toggle navigation</span>
313             <span class="icon-bar"></span>
314             <span class="icon-bar"></span>
315             <span class="icon-bar"></span>
316           </button>
317           <a class="navbar-brand" href="#">Brand</a>
318         </div>
319
320         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-6">
321           <ul class="nav navbar-nav">
322             <li class="active"><a href="#">Home</a></li>
323             <li><a href="#">Link</a></li>
324             <li><a href="#">Link</a></li>
325           </ul>
326         </div><!-- /.navbar-collapse -->
327       </div>
328     </nav>
329   </div><!-- /example -->
330 {% highlight html %}
331 <nav class="navbar navbar-default navbar-fixed-top">
332   <div class="container">
333     ...
334   </div>
335 </nav>
336 {% endhighlight %}
337
338   <div class="bs-callout bs-callout-danger" id="callout-navbar-fixed-top-padding">
339     <h4>Body padding required</h4>
340     <p>The fixed navbar will overlay your other content, unless you add <code>padding</code> to the top of the <code>&lt;body&gt;</code>. Try out your own values or use our snippet below. Tip: By default, the navbar is 50px high.</p>
341 {% highlight scss %}
342 body { padding-top: 70px; }
343 {% endhighlight %}
344     <p>Make sure to include this <strong>after</strong> the core Bootstrap CSS.</p>
345   </div>
346
347
348   <h2 id="navbar-fixed-bottom">Fixed to bottom</h2>
349   <p>Add <code>.navbar-fixed-bottom</code> and include a <code>.container</code> or <code>.container-fluid</code> to center and pad navbar content.</p>
350   <div class="bs-example bs-navbar-bottom-example" data-example-id="navbar-fixed-to-bottom">
351     <nav class="navbar navbar-default navbar-fixed-bottom">
352       <!-- We use the fluid option here to avoid overriding the fixed width of a normal container within the narrow content columns. -->
353       <div class="container-fluid">
354         <div class="navbar-header">
355           <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-7">
356             <span class="sr-only">Toggle navigation</span>
357             <span class="icon-bar"></span>
358             <span class="icon-bar"></span>
359             <span class="icon-bar"></span>
360           </button>
361           <a class="navbar-brand" href="#">Brand</a>
362         </div>
363
364         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-7">
365           <ul class="nav navbar-nav">
366             <li class="active"><a href="#">Home</a></li>
367             <li><a href="#">Link</a></li>
368             <li><a href="#">Link</a></li>
369           </ul>
370         </div><!-- /.navbar-collapse -->
371       </div>
372     </nav>
373   </div><!-- /example -->
374 {% highlight html %}
375 <nav class="navbar navbar-default navbar-fixed-bottom">
376   <div class="container">
377     ...
378   </div>
379 </nav>
380 {% endhighlight %}
381
382   <div class="bs-callout bs-callout-danger" id="callout-navbar-fixed-bottom-padding">
383     <h4>Body padding required</h4>
384     <p>The fixed navbar will overlay your other content, unless you add <code>padding</code> to the bottom of the <code>&lt;body&gt;</code>. Try out your own values or use our snippet below. Tip: By default, the navbar is 50px high.</p>
385 {% highlight scss %}
386 body { padding-bottom: 70px; }
387 {% endhighlight %}
388     <p>Make sure to include this <strong>after</strong> the core Bootstrap CSS.</p>
389   </div>
390
391
392   <h2 id="navbar-static-top">Static top</h2>
393   <p>Create a full-width navbar that scrolls away with the page by adding <code>.navbar-static-top</code> and include a <code>.container</code> or <code>.container-fluid</code> to center and pad navbar content.</p>
394   <p>Unlike the <code>.navbar-fixed-*</code> classes, you do not need to change any padding on the <code>body</code>.</p>
395   <div class="bs-example bs-navbar-top-example" data-example-id="navbar-static-top">
396     <nav class="navbar navbar-default navbar-static-top">
397       <!-- We use the fluid option here to avoid overriding the fixed width of a normal container within the narrow content columns. -->
398       <div class="container-fluid">
399         <div class="navbar-header">
400           <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-8">
401             <span class="sr-only">Toggle navigation</span>
402             <span class="icon-bar"></span>
403             <span class="icon-bar"></span>
404             <span class="icon-bar"></span>
405           </button>
406           <a class="navbar-brand" href="#">Brand</a>
407         </div>
408
409         <!-- Collect the nav links, forms, and other content for toggling -->
410         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-8">
411           <ul class="nav navbar-nav">
412             <li class="active"><a href="#">Home</a></li>
413             <li><a href="#">Link</a></li>
414             <li><a href="#">Link</a></li>
415           </ul>
416         </div><!-- /.navbar-collapse -->
417       </div>
418     </nav>
419   </div><!-- /example -->
420 {% highlight html %}
421 <nav class="navbar navbar-default navbar-static-top">
422   <div class="container">
423     ...
424   </div>
425 </nav>
426 {% endhighlight %}
427
428
429   <h2 id="navbar-inverted">Inverted navbar</h2>
430   <p>Modify the look of the navbar by adding <code>.navbar-inverse</code>.</p>
431   <div class="bs-example" data-example-id="inverted-navbar">
432     <nav class="navbar navbar-inverse">
433       <div class="container-fluid">
434         <!-- Brand and toggle get grouped for better mobile display -->
435         <div class="navbar-header">
436           <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-9">
437             <span class="sr-only">Toggle navigation</span>
438             <span class="icon-bar"></span>
439             <span class="icon-bar"></span>
440             <span class="icon-bar"></span>
441           </button>
442           <a class="navbar-brand" href="#">Brand</a>
443         </div>
444
445         <!-- Collect the nav links, forms, and other content for toggling -->
446         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-9">
447           <ul class="nav navbar-nav">
448             <li class="active"><a href="#">Home</a></li>
449             <li><a href="#">Link</a></li>
450             <li><a href="#">Link</a></li>
451           </ul>
452         </div><!-- /.navbar-collapse -->
453       </div><!-- /.container-fluid -->
454     </nav>
455   </div><!-- /example -->
456 {% highlight html %}
457 <nav class="navbar navbar-inverse">
458   ...
459 </nav>
460 {% endhighlight %}
461 </div>