mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-15 00:37:05 +01:00
Alan Orth
2bb1d6ecc0
Some file are empty (created by `hugo new theme`), but I've left them for reference later.
20 lines
780 B
HTML
20 lines
780 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
|
|
|
{{ if .Site.Params.description }}<meta name="description" content="{{ .Site.Params.description }}">{{ end }}
|
|
{{ if .Site.Params.author }}<meta name="author" content="{{ .Site.Params.author }}">{{ end }}
|
|
|
|
{{ .Hugo.Generator }}
|
|
|
|
<base href="{{ .Site.BaseURL }}">
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
<!-- combined, minified CSS -->
|
|
<link href="{{ .Site.BaseURL }}css/style.css" rel="stylesheet">
|
|
</head>
|