diff options
Diffstat (limited to 'layouts/baseof.html')
| -rw-r--r-- | layouts/baseof.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/baseof.html b/layouts/baseof.html new file mode 100644 index 0000000..bcf79c4 --- /dev/null +++ b/layouts/baseof.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <title>{{ .Title }}</title> + <link rel="stylesheet" href="{{ "styles.css" | absURL }}"> + </head> + <body> + <main> + {{ block "main" . }} + {{ end }} + </main> + </body> +</html> |
