Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2017-11-25 03:13:39 +0300
committerGitHub <noreply@github.com>2017-11-25 03:13:39 +0300
commit02e4f6e5138d908f354a2e989137816befa7de47 (patch)
tree6b6c9aaa1d08dcfa464a75351ad71ad893837822 /_layouts
parent3de46286b2340ba7e9cad7d331eef8c555fde94b (diff)
Use Jekyll's `smartify` filter when possible. (#24866)
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/docs.html4
-rw-r--r--_layouts/simple.html4
2 files changed, 4 insertions, 4 deletions
diff --git a/_layouts/docs.html b/_layouts/docs.html
index a9e2ce5a4d..f876055d72 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 8e7fc5e30b..dfd9afd167 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>