Skip to content

Commit b4cb0f4

Browse files
committed
Update all except slides
1 parent cbfffc3 commit b4cb0f4

File tree

6 files changed

+54
-35
lines changed

6 files changed

+54
-35
lines changed

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ gem "kramdown-parser-gfm"
1414
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
1515
# uncomment the line below. To upgrade, run `bundle update github-pages`.
1616
gem "github-pages", group: :jekyll_plugins
17-
gem "jekyll-include-cache", group: :jekyll_plugins
1817

1918
# If you have any plugins, put them here!
2019
group :jekyll_plugins do
2120
gem "jekyll-feed", "~> 0.13"
21+
gem "jekyll-include-cache"
22+
gem "jekyll-sitemap"
2223
end
2324

2425
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem

Gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ DEPENDENCIES
278278
github-pages
279279
jekyll-feed (~> 0.13)
280280
jekyll-include-cache
281+
jekyll-sitemap
281282
kramdown-parser-gfm
282283
tzinfo-data
283284

_config.yml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
# You can create any custom variable you would like, and they will be accessible
1515
# in the templates via {{ site.myvariable }}.
1616

17-
title: Zarr Project
18-
19-
# email: your-email@example.com
17+
title: Zarr
18+
subtitle: chunked, compressed, N-dimensional arrays
2019

2120
description: >- # this means to ignore newlines until "baseurl:"
2221
@@ -29,18 +28,17 @@ baseurl: "" # the subpath of your site, e.g. /blog
2928

3029
url: "" # the base hostname & protocol for your site, e.g. http://example.com
3130

32-
twitter_username: zarr_dev
3331
github_username: zarr-developers
3432
gitter_url: https://gitter.im/zarr-developers/community
3533

3634
# Build settings
3735
markdown: kramdown
3836
remote_theme: "mmistakes/minimal-mistakes@4.24.0"
39-
minimal_mistakes_skin : "dark"
4037

4138
plugins:
4239
- jekyll-feed
4340
- jekyll-include-cache
41+
- jekyll-sitemap
4442

4543

4644
# Exclude from processing.
@@ -54,3 +52,19 @@ plugins:
5452
# - vendor/cache/
5553
# - vendor/gems/
5654
# - vendor/ruby/
55+
56+
# https://github.com/mmistakes/minimal-mistakes/blob/641ca6f3d8cd8fb0ae24e4f77b2e62a44a65e53b/_config.yml
57+
logo: android-chrome-512x512.png
58+
search: true
59+
search_full_content: true
60+
twitter:
61+
username: zarr_dev
62+
social:
63+
type: Organization
64+
65+
footer:
66+
links:
67+
- label: "Twitter"
68+
icon: "fab fa-fw fa-twitter-square"
69+
- label: "GitHub"
70+
icon: "fab fa-fw fa-github"

_data/navigation.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
main:
2-
- title: "Tutorial"
2+
- title: "Python Tutorial"
33
url: https://zarr.readthedocs.io/en/stable/tutorial.html
44

55
sidebar:
66
- title: About
77
children:
8+
- title: "Description"
9+
url: '#description'
810
- title: "Applications"
911
url: '#applications'
1012
- title: "Features"
1113
url: '#features'
1214
- title: "Sponsorship"
1315
url: "#sponsorship"
16+
- title: "Slides"
17+
url: "/slides"
18+
- title: "Videos"
19+
url: "#videos"
1420
- title: "Community Meetings"
1521
url: '#community-meetings'
1622
- title: Other sites

about.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

index.md

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,36 @@
33
# Edit theme's home layout instead if you wanna make some changes
44
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
55
layout: home
6-
author_profile: true
6+
author_profile: false
77
sidebar:
8-
title: "Sidebar"
8+
title: "Content"
99
nav: sidebar
10-
classes:
11-
- dark-theme
1210
---
1311

14-
Zarr is a container for dense ND-dimensional array data, motivated by the need for a simple, transparent, open, and community-driven format that supports high-throughput distributed I/O on different storage systems.
12+
Zarr is a community project to develop specifications and software for
13+
storage of large N-dimensional typed arrays, also commonly known as
14+
tensors. A particular focus of Zarr is to provide support for storage
15+
using distributed systems like cloud object stores, and to enable
16+
efficient I/O for parallel computing applications.
1517

16-
Zarr data can be stored in any storage system that can be represented as a key-value store, including most commonly POSIX file systems and cloud object storage but also zip files as well as relational and document databases.
18+
## Description
19+
20+
Zarr is motivated by the need for a simple, transparent, open, and
21+
community-driven format that supports high-throughput distributed I/O on
22+
different storage systems. Zarr data can be stored in any storage system that
23+
can be represented as a key-value store, including most commonly POSIX file
24+
systems and cloud object storage but also zip files as well as relational and
25+
document databases.
26+
27+
See the following GitHub repositories for more information:
28+
29+
* [Zarr Python](https://github.com/zarr-developers/zarr)
30+
* [Zarr Specs](https://github.com/zarr-developers/zarr-specs)
31+
* [Numcodecs](https://github.com/zarr-developers/numcodecs)
32+
* [Z5](https://github.com/constantinpape/z5)
33+
* [N5](https://github.com/zarr-developers/numcodecs)
34+
* [Zarr.jl](https://github.com/meggart/Zarr.jl)
35+
* [ndarray.scala](https://github.com/lasersonlab/ndarray.scala)
1736

1837
## Applications
1938

0 commit comments

Comments
 (0)