blog/themes/chosto/layouts/partials/head.html

53 lines
2.6 KiB
HTML
Raw Normal View History

2021-05-18 16:22:28 +02:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ $styleBulma := resources.Get "css/bulma.min.css" }}
{{ $styleCustom := resources.Get "css/custom.css" }}
<link rel="stylesheet" href="{{ $styleBulma.Permalink }}">
<link rel="stylesheet" href="{{ $styleCustom.Permalink }}">
{{- /* RSS feed */}}
{{ range .AlternativeOutputFormats -}}
2022-11-13 20:29:49 +01:00
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
{{- /* Default to home image */}}
2023-09-02 18:29:28 +02:00
{{ $originalImage := resources.Get "img/home.jpg" }}
{{- /* If header image exists in current context, use it instead */}}
{{ with .Resources.GetMatch "top.jpg" }}
2023-09-02 18:29:28 +02:00
{{ $originalImage = . }}
{{ end }}
2023-09-02 18:29:28 +02:00
{{ $image := $originalImage.Resize "3000x" }}
{{ $image = $image | images.Filter (images.GaussianBlur 7) }}
{{- /* tbh I am too lazy to extend Bulma, so put dirty CSS directives here to be able to use Hugo templating system */}}
2021-05-25 02:39:24 +02:00
<style>
.has-bg-img {
background: url('{{ $image.Permalink }}')center center;
background-size: cover;
}
2021-05-25 02:39:24 +02:00
</style>
{{- /* Favico */}}
2021-05-27 01:07:12 +02:00
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
<link rel="icon" sizes="196x196" href="/favicon-196.png" type="image/png">
2021-05-27 00:56:21 +02:00
<meta name="msapplication-TileImage" content="favicon-144.png">
<meta name="msapplication-TileColor" content="#FFFFFF">
<title>{{ .Site.Title }}</title>
<meta property="og:title" content="{{ .Title }}">
<meta content="article" property="og:type">
<meta property="og:site_name" content="Carnet web de Quentin">
<meta content="{{ .Permalink }}" property="og:url">
<meta name="twitter:title" content="{{ .Title }}">
<meta name="description" content="{{ .Params.summary }}">
<meta property="og:description" content="{{ .Params.summary }}">
<meta name="twitter:description" content="{{ .Params.summary }}">
{{ with .Resources.GetMatch "top.jpg" }}
{{ $image := .Fill "480x320 left" }}
{{ $imageURL := $image.Permalink }}
<meta property="og:image" content="{{ $imageURL }}">
<meta name="twitter:image" content="{{ $imageURL }}">
{{ end }}
</head>