diff options
| author | Mitja Felicijan <m@mitjafelicijan.com> | 2023-07-08 21:26:40 +0200 |
|---|---|---|
| committer | Mitja Felicijan <m@mitjafelicijan.com> | 2023-07-08 21:26:40 +0200 |
| commit | d11b6ebe944b13e504608094424217b5d6b39a53 (patch) | |
| tree | 64559a80cf1c04fadf62f84f88120cdc5742e751 /files/base.html | |
| parent | 8e83285cc5b36c516880c9e321b86cb78db0d27f (diff) | |
| download | jbmafp-d11b6ebe944b13e504608094424217b5d6b39a53.tar.gz | |
First version, whatever that means
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> |
