Files
coopgo/themes/coopgo-theme/layouts/partials/head.html
Arnaud Delcasse 7befa8c2d1
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 1m12s
fix publish
2025-02-13 07:58:10 +01:00

27 lines
1.1 KiB
HTML

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ $sass := resources.Get "sass/main.scss" }}
{{ $style := $sass | css.Sass }}
<link rel="stylesheet" href="{{ $style.Permalink }}" media="screen">
{{ $js := resources.Get "js/main.js" }}
<script type="text/javascript" src="{{ $js.Permalink }}"></script>
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title = (printf "%s - %s" .Site.Title .Site.Params.Description) }}{{ end }}
{{ template "_internal/opengraph.html" . }}
<title>{{ $title }}</title>
<meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />
<!-- Plausible analytics (we protect your privacy) -->
<script defer data-domain="coopgo.fr" src="https://plausible.coopgo.io/js/plausible.js"></script>
</head>