mirror of
https://github.com/nikdoof/website-hugo.git
synced 2025-12-23 22:19:30 +00:00
Use absURL
This commit is contained in:
@@ -8,15 +8,15 @@
|
||||
{{ template "_internal/twitter_cards.html" . }}
|
||||
|
||||
<!-- favicons -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ .Site.BaseURL }}/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ .Site.BaseURL }}/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ .Site.BaseURL }}/favicon-16x16.png">
|
||||
<link rel="manifest" href="{{ .Site.BaseURL }}/site.webmanifest">
|
||||
<link rel="mask-icon" href="{{ .Site.BaseURL }}/safari-pinned-tab.svg" color="#b91d47">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ absURL "apple-touch-icon.png" }}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ absURL "favicon-32x32.png" }}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ absURL "favicon-16x16.png" }}">
|
||||
<link rel="manifest" href="{{ absURL "site.webmanifest" }}">
|
||||
<link rel="mask-icon" href="{{ absURL "safari-pinned-tab.svg"}}" color="#b91d47">
|
||||
<meta name="msapplication-TileColor" content="#b91d47">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" href="{{ .Site.BaseURL }}/blog/index.xml" title="{{ .Site.Title }}">
|
||||
<link rel="alternate" type="application/rss+xml" href="{{ absURL "blog/index.xml" }}" title="{{ .Site.Title }}">
|
||||
<link rel="alternate" type="text/calendar" href="https://api.leighhack.org/events.ics" title="{{ .Site.Title }} Events">
|
||||
<link rel="canonical" href="{{ .Permalink }}">
|
||||
|
||||
|
||||
Reference in New Issue
Block a user