mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-02 14:24:19 +01:00
21 lines
960 B
HTML
21 lines
960 B
HTML
{{- "<!-- 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 }}
|
|
|
|
{{- if (ne .Page.Layout "examples") }}
|
|
{{- $targetDocsCssPath := printf "/docs/%s/assets/css/docs.css" .Site.Params.docs_version -}}
|
|
{{- $sassOptions := dict "targetPath" $targetDocsCssPath "precision" 6 -}}
|
|
{{- $postcssOptions := dict "use" "autoprefixer" "noMap" true -}}
|
|
|
|
{{- if (eq (getenv "HUGO_ENV") "production") -}}
|
|
{{- $sassOptions = merge $sassOptions (dict "outputStyle" "compressed") -}}
|
|
{{- end -}}
|
|
|
|
{{- $style := resources.Get "scss/docs.scss" | toCSS $sassOptions | postCSS $postcssOptions }}
|
|
|
|
<link rel="stylesheet" href="{{ $style.Permalink | relURL }}">
|
|
{{- end }}
|