Merge pull request #2 from lentzi90/patch-1

Set language code and render footer text
This commit is contained in:
Steven Engler 2022-05-23 14:09:11 -04:00 committed by GitHub
commit 255219f54a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
{{ $themeStyleDefault := "light.css" -}}
<!DOCTYPE html>
<html>
<html lang="{{ .Site.LanguageCode }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
@ -54,7 +54,7 @@
{{- if .Site.Params.FooterText }}
<hr class="dont-show">
<div class="footer">
<p>{{ .Site.Params.FooterText }}</p>
<p>{{ .Site.Params.FooterText | markdownify }}</p>
</div>
{{- end }}
</body>