| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <!DOCTYPE html>
- <html lang="fr">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta property="og:URL" content="{{ .Site.BaseURL }}"/>
- <meta property="og:site_name" content="{{ .Site.Title }}"/>
- <meta property="twitter:site" content="{{ .Site.Title }}"/>
- <meta property="og:type" content="website"/>
- {{ if .Params.noRobots }}
- <meta name="robots" content="noindex">
- {{ end }}
- {{ if .Description }}
- <meta name="description" content="{{ .Description }}"/>
- <meta property="og:description" content="{{ .Description }}"/>
- <meta property="twitter:description" content="{{ .Description }}"/>
- {{ else }}
- <meta name="description" content="{{ .Site.Params.meta.Description }}"/>
- <meta property="og:description" content="{{ .Site.Params.meta.Description }}"/>
- <meta property="twitter:description" content="{{ .Site.Params.meta.Description }}"/>
- {{ end }}
- {{ if .Params.Image }}
- <meta property="og:image" content="{{.Permalink}}{{ .Params.Image }}"/>
- <meta property="twitter:image" content="{{.Permalink}}{{ .Params.Image }}"/>
- {{ end }}
- {{ block "meta-extended" . }}
- {{end}}
- {{ if .Title }}
- <title>{{ .Title }}</title>
- <meta property="og:title" content="{{ .Title }}"/>
- <meta property="twitter:title" content="{{ .Title }}"/>
- {{ else }}
- <title>{{ .Site.Title }}</title>
- <meta property="og:title" content="{{ .Site.Title }}"/>
- <meta property="twitter:title" content="{{ .Site.Title }}"/>
- {{ end }}
- <!-- Style -->
- {{ with resources.Get "sass/main.scss" }}
- {{ $opts := dict "transpiler" "libsass" "targetPath" "css/style.css" }}
- {{ with . | toCSS $opts }}
- {{ if hugo.IsDevelopment }}
- <link rel="stylesheet" href="{{ .RelPermalink }}">
- {{ else }}
- {{ with . | minify | fingerprint }}
- <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
- {{ end }}
- {{ end }}
- {{ end }}
- {{ end }}
- {{ with resources.Get "styles.css" }}
- {{ if hugo.IsDevelopment }}
- <link rel="stylesheet" href="{{ .RelPermalink }}">
- {{ else }}
- {{ with . | minify | fingerprint }}
- <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
- {{ end }}
- {{ end }}
- {{ end }}
- </head>
- <body>
- {{ partial "navbar.html" . }}
- <section class="main">
- {{ .Params.robots }}
- <!-- Code that all your templates share, like a header -->
- {{ block "main" . }}
- <!-- The part of the page that begins to differ between templates -->
- {{ end }}
- </section>
- {{ partial "footer.html" . }}
- </div>
- </footer>
- </body>
- {{ with resources.Get "js/animation.js" }}
- <script defer language="javascript" type="text/javascript" src="{{ .RelPermalink }}"></script>
- {{ end }}
- <script>
- var _paq = window._paq = window._paq || [];
- /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
- _paq.push(['trackPageView']);
- _paq.push(['enableLinkTracking']);
- (function() {
- var u="//stats.aktivisda.earth/";
- _paq.push(['setTrackerUrl', u+'matomo.php']);
- _paq.push(['setSiteId', '17']);
- var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
- g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
- })();
- </script>
- </html>
|