diff options
| author | XhmikosR <[email protected]> | 2017-11-25 02:13:39 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-11-25 02:13:39 +0200 |
| commit | 02e4f6e5138d908f354a2e989137816befa7de47 (patch) | |
| tree | 6b6c9aaa1d08dcfa464a75351ad71ad893837822 /_layouts/simple.html | |
| parent | 3de46286b2340ba7e9cad7d331eef8c555fde94b (diff) | |
| download | bootstrap-02e4f6e5138d908f354a2e989137816befa7de47.tar.xz bootstrap-02e4f6e5138d908f354a2e989137816befa7de47.zip | |
Use Jekyll's `smartify` filter when possible. (#24866)
Diffstat (limited to '_layouts/simple.html')
| -rw-r--r-- | _layouts/simple.html | 4 |
1 files changed, 2 insertions, 2 deletions
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> |
