diff options
| author | Mark Otto <[email protected]> | 2017-11-24 17:02:01 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-11-24 17:02:01 -0800 |
| commit | babdf36c422f3e6e9d6fe80133e0b3cf121b5ef4 (patch) | |
| tree | b6c753c66baae2f6a889eceb65e971967b61dcc7 /_layouts | |
| parent | 643f5482a408b372b6da84c7859cdfa3fd4cb0b8 (diff) | |
| parent | 7c10068c76751ee0ae8aab8cf0b7bdfdf40912ae (diff) | |
| download | bootstrap-babdf36c422f3e6e9d6fe80133e0b3cf121b5ef4.tar.xz bootstrap-babdf36c422f3e6e9d6fe80133e0b3cf121b5ef4.zip | |
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/docs.html | 4 | ||||
| -rw-r--r-- | _layouts/simple.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/_layouts/docs.html b/_layouts/docs.html index a9e2ce5a4..f876055d7 100644 --- a/_layouts/docs.html +++ b/_layouts/docs.html @@ -25,8 +25,8 @@ {% endif %} <main class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content" role="main"> - <h1 class="bd-title" id="content">{{ page.title }}</h1> - <p class="bd-lead">{{ page.description }}</p> + <h1 class="bd-title" id="content">{{ page.title | smartify }}</h1> + <p class="bd-lead">{{ page.description | smartify }}</p> {% include ads.html %} {{ content }} </main> diff --git a/_layouts/simple.html b/_layouts/simple.html index 8e7fc5e30..dfd9afd16 100644 --- a/_layouts/simple.html +++ b/_layouts/simple.html @@ -4,8 +4,8 @@ layout: default <div class="container my-5"> <main class="bd-content" role="main"> - <h1 class="bd-title" id="content">{{ page.title }}</h1> - <p class="bd-lead">{{ page.description }}</p> + <h1 class="bd-title" id="content">{{ page.title | smartify }}</h1> + <p class="bd-lead">{{ page.description | smartify }}</p> {% include ads.html %} {{ content }} </main> |
