diff options
author | Olivier Roques <olivier@oroques.dev> | 2020-08-01 23:19:40 +0200 |
---|---|---|
committer | Olivier Roques <olivier@oroques.dev> | 2020-08-02 00:31:40 +0200 |
commit | 398eda4992ad73531f39595776c007014b3020c3 (patch) | |
tree | c52e5fdef0a7c07eaccc538ad4f95c558db5d692 /layouts/partials/head.html | |
parent | 74bfd79303ba8776e3b9d02f125a6c93eef9d2b5 (diff) |
Add sass files
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r-- | layouts/partials/head.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index e69de29..2b5566e 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -0,0 +1,18 @@ +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + + <title>{{ .Title }}</title> + <meta name="description" content="{{ .Site.Params.description }}"> + <meta name="author" content='{{ .Site.Params.author }}'> + + <link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap" rel="stylesheet"> + <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> + + {{ $style := resources.Get "sass/researcher.scss" | toCSS | minify }} + <link rel="stylesheet" href="{{ $style.RelPermalink }}"> + + {{ with .Site.Params.favicon }} + <link rel="icon" type="image/ico" href="{{ . | relURL }}"> + {{ end }} +</head> |