From 88c503770b5498730c96c26ea00b1f2ac4a959cf Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Tue, 12 Mar 2024 08:06:57 -0700 Subject: [PATCH] Use new grid syntax (#566) * Use new grid syntax Switching to the new grid syntax. v0.13 - add new syntax via grid1 to theme - port website to grid1 v0.14 - cp grid1 to grid in theme - replace grid1 with grid in websites v0.15 - rm grid1 from theme - nothing to do for websites * Fix typo --- content/en/_index.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/content/en/_index.md b/content/en/_index.md index 7a7cfca..694de7e 100644 --- a/content/en/_index.md +++ b/content/en/_index.md @@ -2,48 +2,48 @@ title: --- -{{< grid columns="1 2 2 3" >}} +{{< grid1 columns="1 2 2 3" >}} -{{< card >}} +[[item]] +type = 'card' title = 'Fundamental algorithms' body = ''' SciPy provides algorithms for optimization, integration, interpolation, eigenvalue problems, algebraic equations, differential equations, statistics and many other classes of problems. ''' -{{< /card >}} -{{< card >}} +[[item]] +type = 'card' title = 'Broadly applicable' body = ''' The algorithms and data structures provided by SciPy are broadly applicable across domains. ''' -{{< /card >}} -{{< card >}} +[[item]] +type = 'card' title = 'Foundational' body = ''' Extends NumPy providing additional tools for array computing and provides specialized data structures, such as sparse matrices and k-dimensional trees. ''' -{{< /card >}} -{{< card >}} +[[item]] +type = 'card' title = 'Performant' body = ''' SciPy wraps highly-optimized implementations written in low-level languages like Fortran, C, and C++. Enjoy the flexibility of Python with the speed of compiled code. ''' -{{< /card >}} -{{< card >}} +[[item]] +type = 'card' title = 'Easy to use' body = ''' SciPy's high level syntax makes it accessible and productive for programmers from any background or experience level. ''' -{{< /card >}} -{{< card >}} +[[item]] +type = 'card' title = 'Open source' body = ''' Distributed under a liberal [BSD license](https://github.com/scipy/scipy/blob/main/LICENSE.txt), SciPy is developed and maintained [publicly on GitHub](https://github.com/scipy/scipy) by a vibrant, responsive, and diverse [community](/community). ''' -{{< /card >}} -{{< /grid >}} +{{< /grid1 >}}