mirror of
https://github.com/nikdoof/website-hugo.git
synced 2025-12-13 18:02:22 +00:00
25 lines
1.2 KiB
HTML
25 lines
1.2 KiB
HTML
<title>{{ block "title" . }}{{ .Site.Title }} - {{ .Title }}{{ end }}</title>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{{ template "_internal/opengraph.html" . }}
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
|
|
<!-- favicons -->
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<link rel="mask-icon" href="/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="canonical" href="{{ .Permalink }}">
|
|
|
|
{{ $opts := dict "transpiler" "libsass" "targetPath" "css/leighhack.css" }}
|
|
{{ with resources.Get "sass/leighhack.scss" | toCSS $opts | minify | fingerprint }}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
{{ end }} |