summaryrefslogtreecommitdiffstats
path: root/layouts/partials/head.html
blob: a2149d01eb0a570956a04ffc11f1d59ee2a97e5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>

<html class="no-js" lang="{{ $.Site.LanguageCode | default "en" }}">

<head>
  <meta charset="utf-8">
  <meta http-equiv="x-ua-compatible" content="ie=edge">
  <title>{{ .Title }} {{ if ne .Title .Site.Title }} &middot; {{ .Site.Title }}{{ end }}</title>
  <meta name="description" content="">
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

  <link rel="stylesheet" href="/css/normalize.css">
  <link rel="stylesheet" href="/css/main.css">
{{ with .OutputFormats.Get "rss" -}}

{{ printf `  <link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
</head>

<body>
{{ if not .IsHome }}
<header>
  <a href="/"><img id="logofloat" src="/img/giraffe.svg" /></a>
</header>
{{ end }}