From e881d7d8639c6af0c48ab14c87c3894417dcc863 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Wed, 6 Mar 2024 19:39:03 -0800 Subject: [PATCH] Use toctree shortcode for summits --- content/summits/_index.md | 2 ++ content/summits/developer/_index.md | 2 ++ content/summits/domain-stacks/_index.md | 2 ++ content/summits/sparse/_index.md | 2 ++ layouts/summits/section.html | 24 ------------------------ 5 files changed, 8 insertions(+), 24 deletions(-) delete mode 100644 layouts/summits/section.html diff --git a/content/summits/_index.md b/content/summits/_index.md index a22a9d2a..80233c2d 100644 --- a/content/summits/_index.md +++ b/content/summits/_index.md @@ -9,3 +9,5 @@ The summits are recorded and shared on our youtube channel under the [“Developer Discussions” playlist](https://www.youtube.com/playlist?list=PL7rNFJDy0iz5GGSmRQNMO-qF6PUG3YsQx). To discuss upcoming summits or suggest potential summit topics, see the [summits category in the discussion forum](https://discuss.scientific-python.org/c/summits/27). + +{{< toctree levels=1 >}} diff --git a/content/summits/developer/_index.md b/content/summits/developer/_index.md index a0ed4f02..139e5a6f 100644 --- a/content/summits/developer/_index.md +++ b/content/summits/developer/_index.md @@ -3,3 +3,5 @@ title: "Developer Summits" --- The Developer Summits provide a venue for in-person collaboration on issues that affect the scientific Python ecosystem. + +{{< toctree levels=1 >}} diff --git a/content/summits/domain-stacks/_index.md b/content/summits/domain-stacks/_index.md index 2c5065dd..7cedf06a 100644 --- a/content/summits/domain-stacks/_index.md +++ b/content/summits/domain-stacks/_index.md @@ -10,3 +10,5 @@ Another related set of questions involve what parts of already organized domain The summits bring together developers and users of specific domain stacks (e.g., [Pangeo](https://pangeo.io/packages.html), [Astropy](https://www.astropy.org/affiliated/index.html), [scikit-hep](https://scikit-hep.org/packages), [scverse](https://scverse.org/projects/), [NIPY](https://nipy.org/)) to discuss the shortcomings of the current documentation and organization, the needs of various scientific "domain stacks," and to develop a shared roadmap and vision for better documenting and organizing domain stack documentation and organization. + +{{< toctree levels=1 >}} diff --git a/content/summits/sparse/_index.md b/content/summits/sparse/_index.md index e80e389d..53373cf4 100644 --- a/content/summits/sparse/_index.md +++ b/content/summits/sparse/_index.md @@ -11,3 +11,5 @@ Recently, a [sparse array API](https://github.com/scipy/scipy/pull/14822) was ad This effort is complimentary to work being done on the [PyData sparse](https://sparse.pydata.org/en/stable/index.html) package, which provides n-dimensional sparse data structures that support array semantics appropriate for Numba compiled code. The summits bring together developers and users of sparse arrays to discuss shortcomings of the current implementations, the needs of various scientific communities, and to develop a shared roadmap and vision for better supporting sparse arrays. + +{{< toctree levels=1 >}} diff --git a/layouts/summits/section.html b/layouts/summits/section.html deleted file mode 100644 index 640e9f42..00000000 --- a/layouts/summits/section.html +++ /dev/null @@ -1,24 +0,0 @@ -{{ define "main" }} - -
-
- {{ partial "breadcrumbs.html" . }} -

{{ .Title }}

- {{ if .Params.Subtitle }} -
{{ .Params.Subtitle }}
- {{ end }} - {{ .Content }} -
-
- {{ range .Pages }} -
{{ .Title }}
- {{ end }} -
-
-
-
On this page
-
-
-
- -{{ end }}