latest vendor !publish!
This commit is contained in:
parent
6f52d87c75
commit
731fbe2acb
3 changed files with 15 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-us{{ end }}">
|
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-us{{ end }}">
|
||||||
<head>
|
<head>
|
||||||
{{- partialCached "head.html" . -}}
|
{{- partial "head.html" . -}}
|
||||||
<title>{{- .Title }} - {{ .Site.Title -}}</title>
|
<title>{{- .Title }} - {{ .Site.Title -}}</title>
|
||||||
{{- partialCached "sandpointjs.html" . .RelPermalink -}}
|
{{- partialCached "sandpointjs.html" . .RelPermalink -}}
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -11,10 +11,21 @@
|
||||||
<meta name="keywords" content="{{ delimit .Keywords "," }}" />
|
<meta name="keywords" content="{{ delimit .Keywords "," }}" />
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if .Params.Author }}
|
{{ if .Params.editors }}
|
||||||
<meta name="author" content="{{ .Params.Author }}" />
|
{{ range .Params.editors }}
|
||||||
|
{{ $e := $.GetPage (printf "editor/%s" .) }}
|
||||||
|
<meta name="editor" content="{{ $e.Title }}" />
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
{{ if .Params.authors }}
|
||||||
|
{{ range .Params.authors }}
|
||||||
|
{{ $e := $.GetPage (printf "author/%s" .) }}
|
||||||
|
<meta name="author" content="{{ $e.Title }}" />
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
{{ template "_internal/opengraph.html" . }}
|
{{ template "_internal/opengraph.html" . }}
|
||||||
{{ template "_internal/twitter_cards.html" . }}
|
{{ template "_internal/twitter_cards.html" . }}
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
# git.sandpoints.org/Drawwell/SandpointsTheme v0.0.0-20210909152529-7aabfbd0c200
|
# git.sandpoints.org/Drawwell/SandpointsTheme v0.0.0-20210909161058-7635428c853b
|
||||||
# git.sandpoints.org/Drawwell/SandpointsEditPage v0.0.0-20210825011616-e019d8a4d186
|
# git.sandpoints.org/Drawwell/SandpointsEditPage v0.0.0-20210825011616-e019d8a4d186
|
||||||
|
|
Loading…
Add table
Reference in a new issue