I'm starting to shape the theme files
[theme-danix.xyz.git] / layouts / partials / head.html
CommitLineData
213775dd 1<head>
2 <meta charset="utf-8">
3 <meta name="viewport" content="width=device-width, initial-scale=1">
4 <link rel="profile" href="https://gmpg.org/xfn/11">
5 <link rel="stylesheet" href="{{ "assets/css/dagreynix_fonts.css" | absURL }}">
6 <link rel="stylesheet" href="{{ "assets/css/dagreynix.css" | absURL }}">
7 {{ partial "funcs/favicon.html" . }}
8 <link rel="canonical" href="{{ .Permalink }}">
9
10 {{ with .OutputFormats.Get "rss" -}}
11 {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
12 {{ end -}}
13
14 {{ $title := print .Site.Title " ⋇ " .Title }}
15 {{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
16 <title>{{ $title }}</title>
17
18 {{ template "_internal/opengraph.html" . }}
19 {{ template "_internal/schema.html" . }}
20 {{ template "_internal/twitter_cards.html" . }}
21
22 {{- partial "head-addition.html" . -}}
23
24</head>