Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move keyfeatures to a grid of cards #558

Merged
merged 1 commit into from
Feb 20, 2024
Merged
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
15 changes: 0 additions & 15 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,6 @@ languages:
# Hero image (from static/images/___)
image: logo.svg

keyfeatures:
features:
- title: Fundamental algorithms
text: SciPy provides algorithms for optimization, integration, interpolation, eigenvalue problems, algebraic equations, differential equations, statistics and many other classes of problems.
- title: Broadly applicable
text: The algorithms and data structures provided by SciPy are broadly applicable across domains.
- title: Foundational
text: Extends NumPy providing additional tools for array computing and provides specialized data structures, such as sparse matrices and k-dimensional trees.
- title: Performant
text: 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.
- title: Easy to use
text: SciPy's high level syntax makes it accessible and productive for programmers from any background or experience level.
- title: Open source
text: 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).

section5: false

navbar:
Expand Down
49 changes: 49 additions & 0 deletions content/en/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
title:
---

{{< grid columns="1 2 2 3" >}}

{{< 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 >}}
title = 'Broadly applicable'
body = '''
The algorithms and data structures provided by SciPy are broadly applicable across domains.
'''
{{< /card >}}

{{< 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 >}}
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 >}}
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 >}}
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 >}}
Loading