mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 08:12:11 +00:00
6042b0bdaf
Should support a sitelinks searchbox now.
13 lines
544 B
HTML
13 lines
544 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{- default "" .Site.LanguageCode }}" xml:lang="{{- default "" .Site.LanguageCode }}" prefix="og: https://ogp.me/ns# article: https://ogp.me/ns/article# cc: http://creativecommons.org/ns#">
|
|
{{ partial "head.html" . -}}
|
|
{{- $stype := "WebPage" -}}
|
|
{{- with .Params.stype -}}
|
|
{{- $stype = . -}}
|
|
{{- end -}}
|
|
<body itemscope="" itemtype="https://schema.org/{{ $stype }}">
|
|
{{ partial "header.html" . -}}
|
|
{{- block "main" . }}{{- end -}}
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html>
|