2019-01-08 17:33:28 +01:00
|
|
|
{{- "<!-- Bootstrap core CSS -->" | safeHTML }}
|
|
|
|
{{ if eq (getenv "HUGO_ENV") "production" -}}
|
|
|
|
<link href="/docs/{{ .Site.Params.docs_version }}/dist/css/bootstrap.min.css" rel="stylesheet" integrity="{{ .Site.Params.cdn.css_hash }}" crossorigin="anonymous">
|
|
|
|
{{- else -}}
|
|
|
|
<link href="/docs/{{ .Site.Params.docs_version }}/dist/css/bootstrap.css" rel="stylesheet">
|
|
|
|
{{- end }}
|
|
|
|
|
2019-07-17 15:05:56 +02:00
|
|
|
{{ if (or (eq .Page.Layout "docs") (eq .Page.Layout "single")) -}}
|
2019-01-08 17:33:28 +01:00
|
|
|
{{- "<!-- Documentation extras -->" | safeHTML }}
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" rel="stylesheet">
|
|
|
|
{{- end -}}
|
|
|
|
{{- if (ne .Page.Layout "examples") }}
|
|
|
|
<link href="/docs/{{ .Site.Params.docs_version }}/assets/css/docs.min.css" rel="stylesheet">
|
|
|
|
{{- end }}
|