diff options
author | Valentin Popov <info@valentineus.link> | 2020-01-23 19:08:52 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-01-23 19:12:44 +0300 |
commit | 28aec1dfdd90b7ffdd11321895ac37c0c2ab6fc6 (patch) | |
tree | 827c4f21448446777e651e05582222fcd4379894 /_includes/head.html | |
parent | 8184c9403408ec66c19cdee80d55d9db7ecf87c7 (diff) | |
download | popov.link-28aec1dfdd90b7ffdd11321895ac37c0c2ab6fc6.tar.xz popov.link-28aec1dfdd90b7ffdd11321895ac37c0c2ab6fc6.zip |
Deleted variable declaration
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_includes/head.html')
-rw-r--r-- | _includes/head.html | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/_includes/head.html b/_includes/head.html index 9078aad..aa6fb4f 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -1,6 +1,3 @@ -{% assign description = page.description | default: site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape %} -{% assign title = page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape %} - <head> <!-- Meta tags --> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1, shrink-to-fit=no, width=device-width" /> @@ -11,21 +8,20 @@ <!-- Advanced meta tags --> {% for tag in site.data.meta_tags %} - <meta name="{{ tag.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" - content="{{ tag.content | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" /> + <meta name="{{ tag.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" content="{{ tag.content | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" /> {% endfor %} <!-- Open Graph --> - <meta property="og:title" content="{{ title }}" /> - <meta property="og:description" content="{{ description }}" /> + <meta property="og:title" content="{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" /> + <meta property="og:description" content="{{ page.description | default: site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" /> <meta property="og:type" content="{{ page.layout | replace: 'post', 'article' | replace: 'page', 'website' | default: 'website' }}" /> <meta property="og:image" content="{{ page.image | absolute_url | uri_escape }}" /> <meta property="og:url" content="{{ page.url | absolute_url | uri_escape }}" /> <!-- Title / Description --> - <meta name="application-name" content="{{ title }}" /> - <meta name="description" content="{{ description }}" /> - <title>{{ title }}</title> + <meta name="application-name" content="{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" /> + <meta name="description" content="{{ page.description | default: site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" /> + <title>{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</title> <!-- CSS --> <link rel="stylesheet" href="{{ '/assets/css/styles.css' | relative_url | uri_escape }}" /> |