theme/layouts/partials/header.html
Kim "BKC" Carlbäcker 85cea3b3e5 Cleanup title-generation (#3)
* Cleanup title-generation
2016-11-14 20:17:25 +01:00

24 lines
649 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ if not .IsHome }}{{ .Title }} - {{ end }}{{ .Site.Title }}</title>
{{ .Hugo.Generator }}
{{ with .Params.goimport }}
<meta name="go-import" content="{{ . }}">
{{ end }}
{{ with .Params.gosource }}
<meta name="go-source" content="{{ . }}">
{{ end }}
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.png">
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<link rel="stylesheet" href="styles/main.css">
<script type="text/javascript" src="scripts/main.js"></script>
</head>
<body>
{{ partial "navbar" . }}