Skip to content

Commit a3f7639

Browse files
committed
swap kramdown toc for jekyll-toc plugin, update page layout to only show on xl and above
1 parent 3b8202d commit a3f7639

File tree

7 files changed

+51
-51
lines changed

7 files changed

+51
-51
lines changed

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ group :development, :test do
44
gem 'jekyll', '~> 3.4.3'
55
gem 'jekyll-redirect-from', '~> 0.12.1'
66
gem 'jekyll-sitemap', '~> 1.1.1'
7+
gem 'jekyll-toc', '~> 0.3.0.pre1'
78
gem 'scss_lint', '~> 0.53.0'
89
end

Gemfile.lock

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ GEM
2323
sass (~> 3.4)
2424
jekyll-sitemap (1.1.1)
2525
jekyll (~> 3.3)
26+
jekyll-toc (0.3.0.pre1)
27+
nokogiri (~> 1.6)
2628
jekyll-watch (1.5.0)
2729
listen (~> 3.0, < 3.1)
2830
kramdown (1.13.2)
@@ -31,6 +33,9 @@ GEM
3133
rb-fsevent (~> 0.9, >= 0.9.4)
3234
rb-inotify (~> 0.9, >= 0.9.7)
3335
mercenary (0.3.6)
36+
mini_portile2 (2.1.0)
37+
nokogiri (1.7.2)
38+
mini_portile2 (~> 2.1.0)
3439
pathutil (0.14.0)
3540
forwardable-extended (~> 2.6)
3641
public_suffix (2.0.5)
@@ -52,6 +57,7 @@ DEPENDENCIES
5257
jekyll (~> 3.4.3)
5358
jekyll-redirect-from (~> 0.12.1)
5459
jekyll-sitemap (~> 1.1.1)
60+
jekyll-toc (~> 0.3.0.pre1)
5561
scss_lint (~> 0.53.0)
5662

5763
BUNDLED WITH

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ exclude: [assets/scss/]
2121
gems:
2222
- jekyll-redirect-from
2323
- jekyll-sitemap
24+
- jekyll-toc
2425

2526
# Social
2627
title: Bootstrap

docs/_layouts/docs.html

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,18 @@
1717
<div class="col-12 col-md-3 col-xl-2 bd-sidebar">
1818
{% include nav-docs.html %}
1919
</div>
20-
<main class="col-12 col-md-9 col-xl-auto py-md-3 pl-md-5 bd-content" role="main">
20+
<main class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content" role="main">
2121
<h1 class="bd-title" id="content">{{ page.title }}</h1>
2222
<p class="bd-lead">{{ page.description }}</p>
2323
{% include ads.html %}
2424
{{ content }}
2525
</main>
26+
27+
{% if page.toc %}
28+
<div class="d-none d-xl-block col-xl-2 bd-toc">
29+
{{ content | toc_only }}
30+
</div>
31+
{% endif %}
2632
</div>
2733
</div>
2834

docs/assets/scss/_content.scss

-44
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,6 @@
55
//
66

77
.bd-content {
8-
@include media-breakpoint-up(xl) {
9-
flex: 1;
10-
padding-right: 20%;
11-
12-
#contents {
13-
display: none;
14-
}
15-
#markdown-toc {
16-
position: fixed;
17-
top: 5rem;
18-
right: 0;
19-
width: 20%;
20-
max-height: calc(100vh - 8rem);
21-
padding-right: 1.5rem;
22-
padding-left: 3rem;
23-
overflow-y: auto;
24-
font-size: .85rem;
25-
}
26-
}
27-
28-
@media (min-width: 2000px) {
29-
#markdown-toc {
30-
padding-left: 6rem;
31-
}
32-
}
33-
348
// Hack the sticky header
359
h2[id],
3610
h3[id] {
@@ -126,21 +100,3 @@
126100
font-weight: 300;
127101
}
128102
}
129-
130-
131-
//
132-
// Markdown generated ToC
133-
//
134-
135-
#markdown-toc {
136-
// Hide the first child li because it's always going to be "Contents".
137-
> li:first-child {
138-
display: none;
139-
}
140-
141-
ul {
142-
padding-left: 2rem;
143-
margin-top: .25rem;
144-
margin-bottom: .25rem;
145-
}
146-
}

docs/assets/scss/_sidebar.scss

+35
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,40 @@
44
// Side navigation
55
//
66

7+
.bd-toc {
8+
position: sticky;
9+
top: 4rem;
10+
max-height: calc(100vh - 4rem);
11+
padding-top: 1.5rem;
12+
padding-bottom: 1.5rem;
13+
overflow-y: auto;
14+
font-size: .85rem;
15+
}
16+
17+
.section-nav {
18+
padding-left: 0;
19+
border-left: 1px solid #eee;
20+
21+
ul {
22+
padding-left: 1rem;
23+
}
24+
}
25+
26+
.toc-entry {
27+
display: block;
28+
29+
a {
30+
display: block;
31+
padding: .25rem 1.5rem;
32+
color: #99979c;
33+
34+
&:hover {
35+
color: $brand-primary;
36+
text-decoration: none;
37+
}
38+
}
39+
}
40+
741
.bd-sidebar {
842
background-color: #f5f5f5;
943
border-right: 1px solid rgba(0,0,0,.1);
@@ -93,6 +127,7 @@
93127

94128
> .bd-sidenav {
95129
display: block;
130+
padding-bottom: .75rem;
96131
}
97132
}
98133
}

docs/getting-started/introduction.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,13 @@ title: Introduction
44
description: Get started with Bootstrap, the world's most popular framework for building responsive, mobile-first sites, with the Bootstrap CDN and a template starter page.
55
group: getting-started
66
redirect_from: "/getting-started/"
7+
toc: true
78
---
89

910
<!-- Bootstrap is the world's most popular framework for building responsive, mobile-first sites and applications. Inside you'll find high quality HTML, CSS, and JavaScript to make starting any project easier than ever. -->
1011

1112
<!-- Here's how to quickly get started with the Bootstrap CDN and a template starter page. -->
1213

13-
14-
## Contents
15-
16-
* Will be replaced with the ToC, excluding the "Contents" header
17-
{:toc}
18-
1914
## Quick start
2015

2116
Looking to quickly add Bootstrap to your project? Use the Bootstrap CDN, provided for free by the folks at MaxCDN. Using a package manager or need to download the source files? [Head to the downloads page.]({{ site.baseurl }}/getting-started/download/)

0 commit comments

Comments
 (0)