hugo-site/layouts/chrome/header.html
blinksmith 15081ac7e5 fix baseURL
update for hugo 0.15
2016-01-25 06:26:13 +07:00

17 lines
429 B
HTML

<!--
This is the actual header for each page of the site except the homepage.
It simply shows the title of the page and includes the css/fonts found in
/layouts/chrome/header.html
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<base href="{{ .Site.BaseURL }}">
<title> {{ .Title }} </title>
<link rel="canonical" href="{{ .Permalink }}">
{{ template "chrome/head_includes.html" . }}
</head>