all repos — blog @ 581a590e7c4523d4a36d80bc9252a2ee1360f65a

Code and content for 5ika.ch

layouts/partials/header.html (view raw)

 1<head>
 2  <meta charset="UTF-8" />
 3  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 4  <link rel="icon" href="/favicon.ico" />
 5  <link
 6    href="/posts/index.xml"
 7    type="application/rss+xml"
 8    rel="alternate"
 9    title="Le blog de 5ika"
10  />
11  {{ with .OutputFormats.Get "rss" -}} {{ printf `
12  <link rel="%q" type="%q" href="%q" title="%q" />
13  ` .Rel .MediaType.Type .Permalink site.Title | safeHTML }} {{ end }}
14  <link
15    rel="alternate"
16    type="text/turtle"
17    href="{{ .Site.BaseURL }}/profile.ttl"
18  />
19  <title>
20    {{ .Page.Title }} {{- if .Page.Title }} - {{ end -}} Tim Izzo @5ika.ch
21  </title>
22  {{ $css := resources.Get "css/style.css" | minify }}
23  <link href="{{ $css.RelPermalink }}" rel="stylesheet" />
24  {{ partial "metatags.html" . }}
25</head>