diff options
Diffstat (limited to 'files/base.html')
| -rw-r--r-- | files/base.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/files/base.html b/files/base.html new file mode 100644 index 0000000..d965c25 --- /dev/null +++ b/files/base.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html lang="{{ .Config.Language }}"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width,initial-scale=1"> + <title>{{ block "title" . }}{{ .Config.Title }}{{ end }}</title> + <meta name="description" content="{{ block "description" . }}{{ .Config.Description }}{{ end }}"> + <link rel="alternate" type="application/rss+xml" href="{{ .Config.BaseURL }}/index.xml"> + </head> + <body> + <main> + {{ block "content" . }}{{ end }} + </main> + </body> +</html> |
