diff options
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r-- | layouts/partials/head.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..2e5db26 --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,9 @@ +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="description" content="{{ $.Site.Params.description }}"> + <meta name="keywords" content="{{ $.Site.Params.keywords }}"> + <meta name="theme-color" content="#000"> + <link rel="stylesheet" type="text/css" href="/css/style.css"> + <title>{{ $.Site.Title }}</title> +</head> |