2023-10-28 08:20:52 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
{{- $description := partialCached "data/description" . .RelPermalink -}}
|
|
|
|
<meta name="description" content="{{ $description }}">
|
|
|
|
|
|
|
|
{{- with .Site.Params.author -}}
|
|
|
|
<meta name="author" content="{{ . }}">
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{- $title := partialCached "data/title" . .RelPermalink -}}
|
|
|
|
|
2024-08-12 20:26:37 +00:00
|
|
|
<title>{{ $title }} {{ if not .IsHome }}- VMEMS{{ end }}</title>
|
2023-10-28 08:20:52 +00:00
|
|
|
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
|
|
|
|
|
|
{{ partial "opengraph/include.html" . }}
|
|
|
|
|
|
|
|
{{ range .AlternativeOutputFormats }}
|
|
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
|
|
|
|
{{ end }}
|
|
|
|
|
2024-08-27 11:11:22 +00:00
|
|
|
{{ $faviconSm := resources.Get "images/logos/logo_sm.png" }}
|
|
|
|
<link rel="apple-touch-icon" sizes="192x192" href="{{ $faviconSm.RelPermalink }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="192x192" href="{{ $faviconSm.RelPermalink }}">
|
2023-10-28 08:20:52 +00:00
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
<meta name="msapplication-TileColor" content="#025E73">
|
2024-08-27 11:11:22 +00:00
|
|
|
<meta name="msapplication-TileImage" content="{{ $faviconSm.RelPermalink }}">
|
2023-10-28 08:20:52 +00:00
|
|
|
<meta name="theme-color" content="#025E73">
|
|
|
|
|
|
|
|
<!-- Note: j'ai galérer à rajouter du scss car en fait y'avait déja une variable $style de définit plus haut... -->
|
|
|
|
{{ $style := resources.Get "sass/main.scss" | resources.ToCSS | resources.Fingerprint }}
|
|
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}">
|
|
|
|
|