diff options
author | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-06-02 21:02:23 +0700 |
---|---|---|
committer | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-06-02 21:17:41 +0700 |
commit | 698a342daaaeea233c340d08f79a14d3d7dd1cfe (patch) | |
tree | c5ec258323f0fbcb728accf6c8af35bf2c43bb84 /layouts | |
parent | e5c47173a2864e91f39c31cc4dd266008210f4ae (diff) | |
download | blog-698a342daaaeea233c340d08f79a14d3d7dd1cfe.tar.gz |
Make sure links are correct
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/head-extra.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/layouts/partials/head-extra.html b/layouts/partials/head-extra.html index d0d0022..c7de825 100644 --- a/layouts/partials/head-extra.html +++ b/layouts/partials/head-extra.html @@ -1,5 +1,6 @@ -<link rel="stylesheet" href="/css/custom.css"> -<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png"> -<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png"> -<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png"> -<link rel="manifest" href="/images/site.webmanifest"> +<base href="https://huyngo.envs.net/"> +<link rel="stylesheet" href={{ "/css/custom.css" | absURL }}> +<link rel="apple-touch-icon" sizes="180x180" href={{ "/images/apple-touch-icon.png" | absURL }}> +<link rel="icon" type="image/png" sizes="32x32" href={{ "/images/favicon-32x32.png" | absURL }}> +<link rel="icon" type="image/png" sizes="16x16" href={{ "/images/favicon-16x16.png" | absURL }}> +<link rel="manifest" href={{ "/images/site.webmanifest" | absURL }}> |