mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2025-01-31 08:57:15 +00:00
fix: errors when building site with Hugo 0.20
This commit is contained in:
parent
fcca8a21f1
commit
4257ec0471
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
<html lang="en" class="js csstransforms3d">
|
<html lang="en" class="js csstransforms3d">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8"> {{ partial "meta.html" . }} {{ partial "favicon.html" . }} {{ .Scratch.Add "title" "" }}{{ if isset .Site.Data.titles .Title }}{{ .Scratch.Set "title" (index .Site.Data.titles .Title).title }}{{ else }}{{ .Scratch.Set "title" .Title}}{{end}}
|
<meta charset="utf-8"> {{ partial "meta.html" . }} {{ partial "favicon.html" . }} {{ .Scratch.Add "title" "" }}{{ if eq .Site.Data.titles .Title }}{{ .Scratch.Set "title" (index .Site.Data.titles .Title).title }}{{ else }}{{ .Scratch.Set "title" .Title}}{{end}}
|
||||||
<title>{{ .Scratch.Get "title" }}</title>
|
<title>{{ .Scratch.Get "title" }}</title>
|
||||||
{{ partial "style.html" . }}
|
{{ partial "style.html" . }}
|
||||||
<link href="{{ .Site.BaseURL }}/css/nucleus.css" rel="stylesheet">
|
<link href="{{ .Site.BaseURL }}/css/nucleus.css" rel="stylesheet">
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
{{ .Hugo.Generator }}
|
{{ .Hugo.Generator }}
|
||||||
{{ partial "meta.html" . }}
|
{{ partial "meta.html" . }}
|
||||||
{{ partial "favicon.html" . }}
|
{{ partial "favicon.html" . }}
|
||||||
{{ .Scratch.Add "title" "" }}{{ if isset .Site.Data.titles .Title }}{{ .Scratch.Set "title" (index .Site.Data.titles .Title).title }}{{ else }}{{ .Scratch.Set "title" .Title}}{{end}}
|
{{ .Scratch.Add "title" "" }}{{ if eq .Site.Data.titles .Title }}{{ .Scratch.Set "title" (index .Site.Data.titles .Title).title }}{{ else }}{{ .Scratch.Set "title" .Title}}{{end}}
|
||||||
<title>{{ .Scratch.Get "title" }}</title>
|
<title>{{ .Scratch.Get "title" }}</title>
|
||||||
<link href="{{ .Site.BaseURL }}/css/nucleus.css" rel="stylesheet">
|
<link href="{{ .Site.BaseURL }}/css/nucleus.css" rel="stylesheet">
|
||||||
<link href="{{ .Site.BaseURL }}/css/font-awesome.min.css" rel="stylesheet">
|
<link href="{{ .Site.BaseURL }}/css/font-awesome.min.css" rel="stylesheet">
|
||||||
|
|
Loading…
Add table
Reference in a new issue