Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ help: ## show this help
@grep -h "##" $(MAKEFILE_LIST) | grep -v grep | sed -e 's/\(.*\):.*##\(.*\)/ \1: \2/'

prepare:
git submodule update --init
git submodule update --init --recursive

cookie:
(cd external-content/cookie/docs && \
Expand Down
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ markup:
unsafe: true
renderHooks:
link:
enableDefault: true
useEmbedded: fallback

params:
description: "Documentation for the Scientific Python community."
Expand Down
4 changes: 2 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[build.environment]
PYTHON_VERSION = "3.13"
NODE_VERSION = "24"
HUGO_VERSION = "0.141.0"
DART_SASS_VERSION = "1.83.4"
HUGO_VERSION = "0.158.0"
DART_SASS_VERSION = "1.93.2"
DART_SASS_URL = "https://github.com/sass/dart-sass/releases/download/"

[build]
Expand Down
2 changes: 1 addition & 1 deletion themes/scientific-python-hugo-theme
Submodule scientific-python-hugo-theme updated 68 files
+4 −0 .github/dependabot.yml
+2 −0 .github/workflows/label-check.yaml
+6 −1 .github/workflows/milestone-merged-prs.yaml
+2 −0 .gitignore
+3 −3 .gitmodules
+4 −4 .pre-commit-config.yaml
+101 −0 CHANGELOG.md
+2 −4 README.md
+5 −3 RELEASE.md
+1 −0 assets/icons/bluesky.svg
+1 −0 assets/icons/linkedin.svg
+34 −12 assets/js/shortcuts.js
+3 −11 assets/theme-css/bulma.css
+0 −2 assets/theme-css/code-highlight.css
+13 −5 assets/theme-css/content.css
+22 −5 assets/theme-css/footer.css
+12 −6 assets/theme-css/navbar.css
+4 −0 assets/theme-css/posts.css
+4 −0 assets/theme-css/pst/components/_breadcrumbs.scss
+6 −5 assets/theme-css/pst/variables/_fonts.scss
+0 −3 assets/theme-css/sphinx-design/_button.scss
+0 −4 assets/theme-css/sphinx-design/_cards.scss
+123 −12 assets/theme-css/sphinx-design/_dropdown.scss
+4 −2 assets/theme-css/sphinx-design/_grids.scss
+8 −0 assets/theme-css/tables.css
+9 −0 assets/theme-css/vars.css
+1 −1 config.yaml
+10 −3 doc/config.yaml
+3 −0 doc/content/_index.md
+22 −22 doc/content/about/theme-team.toml
+0 −1 doc/content/examples/kitchen-sink/tables.md
+42 −0 doc/content/user_guide/features.md
+1 −1 doc/content/user_guide/getstarted.md
+49 −34 doc/content/user_guide/web-components.md
+4 −8 doc/netlify.toml
+2 −2 exampleSite/config.yaml
+1 −1 layouts/_default/baseof.html
+2 −7 layouts/_default/section.html
+3 −10 layouts/_default/single.html
+1 −1 layouts/index.html
+3 −0 layouts/news/list.html
+3 −0 layouts/news/single.html
+6 −0 layouts/partials/_decorators/article.html
+8 −0 layouts/partials/_decorators/content-container.html
+21 −2 layouts/partials/_elements/grid.html
+3 −3 layouts/partials/footer.html
+1 −1 layouts/partials/hero.html
+1 −2 layouts/partials/javascript.html
+3 −3 layouts/partials/navbar.html
+4 −7 layouts/partials/posts/list-with-summary.html
+5 −6 layouts/partials/posts/list-without-summary.html
+2 −7 layouts/partials/posts/list.html
+4 −1 layouts/partials/posts/meta.html
+6 −9 layouts/partials/posts/post.html
+5 −7 layouts/partials/section/section.html
+1 −1 layouts/shortcodes/blog.html
+87 −73 layouts/shortcodes/button.html
+143 −14 layouts/shortcodes/dropdown.html
+55 −33 layouts/shortcodes/figure.html
+95 −13 layouts/shortcodes/grid.html
+26 −21 layouts/shortcodes/image.html
+8 −5 layouts/shortcodes/sidebar.html
+1 −1 pyproject.toml
+1 −1 requirements.txt
+0 −1 themes/hugo-atom-feed
+1 −0 themes/hugo-atom-layout
+2 −0 tools/render_shortcode_docs.py
+4 −4 tools/team_query.py