aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/components/breadcrumbs.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-03-16 19:03:53 -0700
committerMark Otto <[email protected]>2014-03-16 19:03:53 -0700
commit2a43e7e78a59c70e217383c12c9ef0482cabb163 (patch)
tree8fc0b4560d171f63efb353d4c9965aa5c761d82c /docs/_includes/components/breadcrumbs.html
parentbdb70fa471965728609d86c001384791fa44398b (diff)
downloadbootstrap-2a43e7e78a59c70e217383c12c9ef0482cabb163.tar.xz
bootstrap-2a43e7e78a59c70e217383c12c9ef0482cabb163.zip
Break up docs into includes
Diffstat (limited to 'docs/_includes/components/breadcrumbs.html')
-rw-r--r--docs/_includes/components/breadcrumbs.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/_includes/components/breadcrumbs.html b/docs/_includes/components/breadcrumbs.html
new file mode 100644
index 000000000..19abdc265
--- /dev/null
+++ b/docs/_includes/components/breadcrumbs.html
@@ -0,0 +1,27 @@
+<div class="bs-docs-section">
+ <h1 id="breadcrumbs" class="page-header">Breadcrumbs</h1>
+
+ <p class="lead">Indicate the current page's location within a navigational hierarchy.</p>
+ <p>Separators are automatically added in CSS through <code>:before</code> and <code>content</code>.</p>
+ <div class="bs-example">
+ <ol class="breadcrumb">
+ <li class="active">Home</li>
+ </ol>
+ <ol class="breadcrumb">
+ <li><a href="#">Home</a></li>
+ <li class="active">Library</li>
+ </ol>
+ <ol class="breadcrumb" style="margin-bottom: 5px;">
+ <li><a href="#">Home</a></li>
+ <li><a href="#">Library</a></li>
+ <li class="active">Data</li>
+ </ol>
+ </div>
+{% highlight html %}
+<ol class="breadcrumb">
+ <li><a href="#">Home</a></li>
+ <li><a href="#">Library</a></li>
+ <li class="active">Data</li>
+</ol>
+{% endhighlight %}
+</div>