Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

baseof.html 2.5KB

il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html lang="{{ $.Site.LanguageCode | default "en" }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. {{/* NOTE: the Site's title, and if there is a page title, that is set too */}}
  7. <title>{{ block "title" . }}{{ .Site.Title }} {{ with .Params.Title }} | {{ . }}{{ end }}{{ end }}</title>
  8. <meta name="HandheldFriendly" content="True">
  9. <meta name="MobileOptimized" content="320">
  10. <meta name="viewport" content="width=device-width,minimum-scale=1">
  11. {{ .Hugo.Generator }}
  12. {{/* NOTE: For Production make sure you add `HUGO_ENV="production"` before your build command */}}
  13. {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
  14. <META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
  15. {{ else }}
  16. <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
  17. {{ end }}
  18. {{ $stylesheet := .Site.Data.webpack_assets.app }}
  19. {{ with $stylesheet.css }}
  20. <link href="{{ relURL (printf "%s%s" "dist/" .) }}" rel="stylesheet">
  21. {{ end }}
  22. {{ range .Site.Params.custom_css }}
  23. <link rel="stylesheet" href="{{ relURL ($.Site.BaseURL) }}{{ . }}">
  24. {{ end }}
  25. {{ block "favicon" . }}
  26. {{ partialCached "site-favicon.html" . }}
  27. {{ end }}
  28. {{ if .RSSLink }}
  29. <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
  30. <link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}" />
  31. {{ end }}
  32. {{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/spf13/hugo/blob/master/tpl/tplimpl/template_embedded.go#L158 */}}
  33. {{- template "_internal/opengraph.html" . -}}
  34. {{- template "_internal/google_news.html" . -}}
  35. {{- template "_internal/schema.html" . -}}
  36. {{- template "_internal/twitter_cards.html" . -}}
  37. {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
  38. {{ template "_internal/google_analytics_async.html" . }}
  39. {{ end }}
  40. </head>
  41. <body class="ma0 {{ $.Param "body_classes" | default "avenir bg-near-white"}}{{ with getenv "HUGO_ENV" }} {{ . }}{{ end }}">
  42. {{ block "header" . }}{{ partial "site-header.html" .}}{{ end }}
  43. <main class="pb7" role="main">
  44. {{ block "main" . }}{{ end }}
  45. </main>
  46. {{ block "footer" . }}{{ partialCached "site-footer.html" . }}{{ end }}
  47. {{ block "scripts" . }}{{ partialCached "site-scripts.html" . }}{{ end }}
  48. </body>
  49. </html>