all repos — blog @ 8ab3bf0a1ecdd159bb2d32567882d627a15152d0

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
 5    rel="icon"
 6    href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🦌</text></svg>"
 7  />
 8  <link
 9    href="/posts/index.xml"
10    type="application/rss+xml"
11    rel="alternate"
12    title="Le blog de 5ika"
13  />
14  {{ with .OutputFormats.Get "rss" -}}
15    {{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
16  {{ end }}
17  <link rel="alternate" type="text/turtle" href="{{ .Site.BaseURL }}/profile.ttl" />
18  <title>
19    {{ .Page.Title }} {{- if .Page.Title }} - {{ end -}} Tim Izzo @5ika.ch
20  </title>
21  {{ $css := resources.Get "css/style.css" | minify }}
22  <link href="{{ $css.RelPermalink }}" rel="stylesheet">
23</head>