0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-03 08:00:26 +03:00

Fixed a lot of minor bugs

This commit is contained in:
2024-02-14 14:12:06 +04:00
parent a3a95d7a9b
commit 98c2bf4188
10 changed files with 25 additions and 29 deletions

View File

@ -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>