diff options
author | Valentin Popov <valentin@popov.link> | 2024-02-14 20:33:46 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-02-14 20:33:46 +0300 |
commit | ad86f7a4717f60182a9aa6d95b255a478b5f34e4 (patch) | |
tree | 3faddbb0ce6648414814b4894d767019fc729861 /_includes | |
parent | b8edb5d4cd4c24e7b1e1c4a53d9470a754f28ab7 (diff) | |
download | popov.link-ad86f7a4717f60182a9aa6d95b255a478b5f34e4.tar.xz popov.link-ad86f7a4717f60182a9aa6d95b255a478b5f34e4.zip |
Correction of validator's comments [2]
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/head.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_includes/head.html b/_includes/head.html index 1094f76..d91ac74 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -6,14 +6,14 @@ <meta content="index, follow" name="robots"> <!-- Title / Description --> - <meta content="{{- page.description | default: site.description | strip | normalize_whitespace | xml_escape -}}" name="description" /> + <meta content="{{- page.description | default: site.description | strip | normalize_whitespace | xml_escape -}}" name="description"> <title>{{- page.title | default: site.title | strip | normalize_whitespace | xml_escape -}}</title> <!-- RSS --> - <link href="{{- site.rss | absolute_url | url_escape -}}" rel="alternate" title="RSS" type="application/atom+xml" /> + <link href="{{- site.rss | absolute_url | url_escape -}}" rel="alternate" title="RSS" type="application/atom+xml"> <!-- Canonical URL --> - <link href="{{- page.url | absolute_url | url_escape -}}" rel="canonical" /> + <link href="{{- page.url | absolute_url | url_escape -}}" rel="canonical"> <!-- CSS --> {%- include styles.html -%} |