Rebuilding the Machine Listening Curriculum beginning in 2024
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 regels
1.7 KiB

  1. <meta charset="utf-8" />
  2. <meta name="viewport" content="width=device-width, initial-scale=1">
  3. <meta name="msapplication-TileColor" content="#da532c">
  4. <meta name="theme-color" content="#ffffff">
  5. {{ if .Description }}
  6. <meta name="description" content="{{ .Description }}" />
  7. {{ end }}
  8. {{ if .Keywords }}
  9. <meta name="keywords" content="{{ delimit .Keywords "," }}" />
  10. {{ end }}
  11. {{ if .Params.editors }}
  12. {{ range .Params.editors }}
  13. {{ $e := $.GetPage (printf "editor/%s" .) }}
  14. <meta name="editor" content="{{ $e.Title }}" />
  15. {{ end }}
  16. {{ end }}
  17. {{ if .Params.authors }}
  18. {{ range .Params.authors }}
  19. {{ $e := $.GetPage (printf "author/%s" .) }}
  20. <meta name="author" content="{{ $e.Title }}" />
  21. {{ end }}
  22. {{ end }}
  23. {{ template "_internal/opengraph.html" . }}
  24. {{ template "_internal/twitter_cards.html" . }}
  25. {{ hugo.Generator }}
  26. <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon.png">
  27. <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
  28. <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
  29. <link rel="manifest" href="/site.webmanifest">
  30. <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#996561">
  31. {{ if eq hugo.Environment "dev" }}
  32. {{ $style := resources.Get "css/site.css" | resources.PostCSS (dict "config" "assets/css/postcss.config.js") | minify }}
  33. <link rel="stylesheet" href="{{ $style.RelPermalink }}" />
  34. {{ $style := resources.Get "css/player.css" | resources.PostCSS (dict "config" "assets/css/postcss.config.js") | minify }}
  35. <link rel="stylesheet" href="{{ $style.RelPermalink }}" />
  36. {{ else }}
  37. <link rel="stylesheet" href="/css/site.min.css" />
  38. <link rel="stylesheet" href="/css/player.min.css" />
  39. {{ end }}