27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode | default "en-us" }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>{{ .Title }}</title>
|
|
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
|
|
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
|
|
<link rel="stylesheet" href="{{ "/css/sscaffold.css" | relURL }}">
|
|
<link rel="stylesheet" href="{{ "/css/xsfx.css" | relURL }}">
|
|
<link rel="webmention" href="https://webmention.io/xsteadfastx.org/webmention" />
|
|
<link rel="pingback" href="https://webmention.io/xsteadfastx.org/xmlrpc" />
|
|
{{ with .OutputFormats.Get "RSS" -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
|
|
{{- end }}
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
</head>
|
|
<body>
|
|
{{ partial "meta" . }}
|
|
{{ partial "header" . }}
|
|
{{ block "main" . }}{{ end }}
|
|
{{ partial "footer" . }}
|
|
{{ partial "scripts" . }}
|
|
{{ block "footerfiles" . }}{{ end }}
|
|
</body>
|
|
</html>
|