aboutsummaryrefslogtreecommitdiff
path: root/_includes/header.html
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2017-11-25 02:13:39 +0200
committerGitHub <[email protected]>2017-11-25 02:13:39 +0200
commit02e4f6e5138d908f354a2e989137816befa7de47 (patch)
tree6b6c9aaa1d08dcfa464a75351ad71ad893837822 /_includes/header.html
parent3de46286b2340ba7e9cad7d331eef8c555fde94b (diff)
downloadbootstrap-02e4f6e5138d908f354a2e989137816befa7de47.tar.xz
bootstrap-02e4f6e5138d908f354a2e989137816befa7de47.zip
Use Jekyll's `smartify` filter when possible. (#24866)
Diffstat (limited to '_includes/header.html')
-rw-r--r--_includes/header.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/_includes/header.html b/_includes/header.html
index c2c9deca0..f2f1deff8 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -1,14 +1,14 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-<meta name="description" content="{{ page.description | default: site.description }}">
+<meta name="description" content="{{ page.description | default: site.description | smartify }}">
<meta name="author" content="{{ site.authors }}">
<meta name="generator" content="Jekyll v{{ jekyll.version }}">
<title>
{%- if page.title -%}
- {{ page.title }} · {{ site.title }}
+ {{ page.title | smartify }} · {{ site.title | smartify }}
{%- else -%}
- {{ site.title }} · {{ site.description }}
+ {{ site.title | smartify }} · {{ site.description | smartify }}
{%- endif -%}
</title>