diff options
author | Mario <mario@mariovavti.com> | 2021-02-15 18:42:21 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-15 18:42:21 +0000 |
commit | ad0b0364b81c04423e02edd596ebbb5b9b748624 (patch) | |
tree | 84cf18667bbb416b088fdba9eec90679c74418d8 /vendor/twbs/bootstrap/site/layouts/partials/stylesheet.html | |
parent | e8c2e17bc901ab139377e759f5ef931f8649b8c1 (diff) | |
download | volse-hubzilla-ad0b0364b81c04423e02edd596ebbb5b9b748624.tar.gz volse-hubzilla-ad0b0364b81c04423e02edd596ebbb5b9b748624.tar.bz2 volse-hubzilla-ad0b0364b81c04423e02edd596ebbb5b9b748624.zip |
missing files
Diffstat (limited to 'vendor/twbs/bootstrap/site/layouts/partials/stylesheet.html')
-rw-r--r-- | vendor/twbs/bootstrap/site/layouts/partials/stylesheet.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/site/layouts/partials/stylesheet.html b/vendor/twbs/bootstrap/site/layouts/partials/stylesheet.html new file mode 100644 index 000000000..8013e6f9d --- /dev/null +++ b/vendor/twbs/bootstrap/site/layouts/partials/stylesheet.html @@ -0,0 +1,25 @@ +{{- "<!-- Bootstrap core CSS -->" | safeHTML }} +{{ if eq hugo.Environment "production" -}} +<link href="/docs/{{ .Site.Params.docs_version }}/dist/css/bootstrap.min.css" rel="stylesheet" {{ printf "integrity=%q" .Site.Params.cdn.css_hash | safeHTMLAttr }} 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 "outputStyle" "expanded" "precision" 6 -}} +{{- $postcssOptions := dict "use" "autoprefixer" "noMap" true -}} + +{{ if eq hugo.Environment "production" -}} + {{- $sassOptions = merge $sassOptions (dict "outputStyle" "compressed") -}} +{{- end -}} + +{{- $style := resources.Get "scss/docs.scss" | toCSS $sassOptions | postCSS $postcssOptions }} + +<link href="{{ $style.Permalink | relURL }}" rel="stylesheet"> +{{- end }} |