summaryrefslogtreecommitdiffstats
path: root/layouts/partials/head.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r--layouts/partials/head.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..ffd8423
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,21 @@
+<!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">
+</head>
+
+<body>
+{{ if not .IsHome }}
+<header>
+ <a href="/"><img id="logofloat" src="/img/giraffe.svg" /></a>
+</header>
+{{ end }}