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 }}">
|
||||
<head>
|
||||
{{- partialCached "head.html" . -}}
|
||||
{{- partial "head.html" . -}}
|
||||
<title>{{- .Title }} - {{ .Site.Title -}}</title>
|
||||
{{- partialCached "sandpointjs.html" . .RelPermalink -}}
|
||||
</head>
|
||||
|
|
|
@ -11,9 +11,20 @@
|
|||
<meta name="keywords" content="{{ delimit .Keywords "," }}" />
|
||||
{{ end }}
|
||||
|
||||
{{ if .Params.Author }}
|
||||
<meta name="author" content="{{ .Params.Author }}" />
|
||||
{{ if .Params.editors }}
|
||||
{{ range .Params.editors }}
|
||||
{{ $e := $.GetPage (printf "editor/%s" .) }}
|
||||
<meta name="editor" content="{{ $e.Title }}" />
|
||||
{{ 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/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
|
||||
|
|
Loading…
Add table
Reference in a new issue