diff options
| author | vin <git@vineetk.net> | 2024-10-22 14:23:15 -0400 |
|---|---|---|
| committer | vin <git@vineetk.net> | 2024-10-22 14:23:15 -0400 |
| commit | 13c231ee0d0ff477969e14b47332ec94329bf80c (patch) | |
| tree | 2a7bc3916f95e954dd5223fe0ffdf13b7bea155e /layouts/partials/head.html | |
initial commit with converted pages
Diffstat (limited to 'layouts/partials/head.html')
| -rw-r--r-- | layouts/partials/head.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..3e6ccaa --- /dev/null +++ b/layouts/partials/head.html | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | <!doctype html> | ||
| 2 | <html lang="en"> | ||
| 3 | <head> | ||
| 4 | <meta charset="utf-8" /> | ||
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
| 6 | {{ if $.Params.noindex }} | ||
| 7 | <meta name="robots" content="noindex"> | ||
| 8 | {{ end }} | ||
| 9 | <title>{{$.Title}}</title> | ||
| 10 | <link rel="alternate" type="application/rss+xml" title="RSS" href="https://vineetk.net/blog/index.xml"> | ||
| 11 | <link rel="icon" type="image/png" href="/AT_terminus.png"> | ||
| 12 | {{ $style := resources.Get "main.scss" | css.Sass | resources.Fingerprint }} | ||
| 13 | <link rel="stylesheet" href="{{ $style.RelPermalink }}"> | ||
| 14 | </head> | ||
