Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
fe6b22c2
Commit
fe6b22c2
authored
10 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
Rewrite breadcrumb in markdown
parent
743401dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/_includes/components/breadcrumbs.html
+0
-27
docs/_includes/components/breadcrumbs.html
docs/components/breadcrumb.md
+23
-0
docs/components/breadcrumb.md
with
23 additions
and
27 deletions
+23
-27
docs/_includes/components/breadcrumbs.html
deleted
100644 → 0
+
0
-
27
View file @
743401dc
<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>
This diff is collapsed.
Click to expand it.
docs/components/breadcrumb.md
0 → 100644
+
23
-
0
View file @
fe6b22c2
---
layout
:
page
title
:
Breadcrumb
---
Indicate the current page's location within a navigational hierarchy.
Separators are automatically added in CSS through
`:before`
and
`content`
.
{% example html %}
<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>
{% endexample %}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment