all repos — blog @ f6e0dc9e28bea5e9763cd7033927852c943d5f56

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" -}}
12    {{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
13  {{ end }}
14  <link rel="alternate" type="text/turtle" href="{{ .Site.BaseURL }}/profile.ttl" />
15  <title>
16    {{ .Page.Title }} {{- if .Page.Title }} - {{ end -}} Tim Izzo @5ika.ch
17  </title>
18  {{ $css := resources.Get "css/style.css" | minify }}
19  <link href="{{ $css.RelPermalink }}" rel="stylesheet">
20  {{ partial "metatags.html" . }}
21</head>