Skip to content

Commit 40c2c14

Browse files
author
Tim Bannister
committed
Fix invalid HTML element name
Wrong: <headclass="live-site"> Right: <head class="live-site"> Make it so.
1 parent 7aa5a90 commit 40c2c14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

layouts/_default/baseof.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{{- if eq hugo.Environment "preview" -}}
44
<!-- deploy preview -->
55
{{- end -}}
6-
<head {{- if hugo.IsProduction -}}class="live-site"{{- end -}}>
6+
<head{{- if hugo.IsProduction}} class="live-site"{{- end -}}>
77
{{ partial "head.html" . }}
88
</head>
99
<body class="td-{{ .Kind }}{{- if ne (lower .Params.cid) "" -}}{{- printf " cid-%s" (lower .Params.cid) -}}{{- end -}}">

0 commit comments

Comments
 (0)