We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc9f9bc commit af7c276Copy full SHA for af7c276
3 files changed
assets/theme-css/scientific-python-hugo-theme.scss
assets/theme-css/spht/index.scss
@@ -0,0 +1 @@
1
+@import "./code";
layouts/partials/css.html
@@ -22,7 +22,11 @@
22
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols+2">
23
24
<!-- Process and include Sass files. -->
25
-{{- $sass := (resources.Match "theme-css/*.scss") | append (resources.Match "css/*.scss") -}}
+{{- $sass := append (resources.Get "theme-css/sphinx-design/index.scss")
26
+ (resources.Get "theme-css/pst/pydata-sphinx-theme.scss")
27
+ (resources.Get "theme-css/spht/index.scss")
28
+ (resources.Match "theme-css/*.scss")
29
+ | append (resources.Match "css/*.scss") -}}
30
31
{{- range $sass -}}
32
{{ with . }} <!-- Skips nil elements from appending empty resources.Match slices. -->
0 commit comments