Skip to content

Commit

Permalink
Use new grid syntax (#566)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
jarrodmillman committed Mar 12, 2024
1 parent 41f48b1 commit 88c5037
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions content/en/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 >}}

0 comments on commit 88c5037

Please sign in to comment.