mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-03 15:24:19 +01:00
129bb08fc4
Now there's only one command needed to run the docs: `npm run docs-serve`. Also, simplify the npm scripts.
26 lines
1.2 KiB
HTML
26 lines
1.2 KiB
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 (or (eq .Page.Layout "docs") (eq .Page.Layout "single")) -}}
|
|
{{- "<!-- 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") }}
|
|
{{- $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 }}
|