aboutsummaryrefslogtreecommitdiff
path: root/_includes/head.html
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-02-14 13:12:06 +0300
committerValentin Popov <valentin@popov.link>2024-02-14 13:12:06 +0300
commit98c2bf4188269b6a4cc8adbdeaf7f6fe56155f34 (patch)
treef7c618870ee6cf1b17425d2efd2df6cd3b1e42a1 /_includes/head.html
parenta3a95d7a9b020f9aeb66e17cab16e957f5a7cb5e (diff)
downloadpopov.link-98c2bf4188269b6a4cc8adbdeaf7f6fe56155f34.tar.xz
popov.link-98c2bf4188269b6a4cc8adbdeaf7f6fe56155f34.zip
Fixed a lot of minor bugs
Diffstat (limited to '_includes/head.html')
-rw-r--r--_includes/head.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/_includes/head.html b/_includes/head.html
index 7a80b10..a526f66 100644
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -10,16 +10,16 @@
<title>{{- page.title | default: site.title | strip | normalize_whitespace | xml_escape -}}</title>
<!-- CSS -->
- <link href="{{- '/assets/css/styles.css' | relative_url | uri_escape -}}" rel="stylesheet" />
+ <link href="{{- '/assets/css/styles.css' | relative_url | url_escape -}}" rel="stylesheet" />
<!-- RSS -->
- <link href="{{- site.rss | absolute_url | uri_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 | uri_escape -}}" rel="canonical" />
+ <link href="{{- page.url | absolute_url | url_escape -}}" rel="canonical" />
<!--[if lte IE 9]>
- <script type="text/javascript" src="{{- '/assets/javascript/html5shiv-3.7.3.min.js' | relative_url | uri_escape -}}"></script>
- <script type="text/javascript" src="{{- '/assets/javascript/respond-1.4.2.min.js' | relative_url | uri_escape -}}"></script>
+ <script type="text/javascript" src="{{- '/assets/javascript/html5shiv-3.7.3.min.js' | relative_url | url_escape -}}"></script>
+ <script type="text/javascript" src="{{- '/assets/javascript/respond-1.4.2.min.js' | relative_url | url_escape -}}"></script>
<![endif]-->
</head> \ No newline at end of file