https://github.com/scverse/scverse.github.io
scverse.org website
https://github.com/scverse/scverse.github.io
Last synced: 11 months ago
JSON representation
scverse.org website
- Host: GitHub
- URL: https://github.com/scverse/scverse.github.io
- Owner: scverse
- Created: 2022-01-18T02:20:26.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-07-01T21:21:02.000Z (11 months ago)
- Last Synced: 2025-07-01T22:26:02.881Z (11 months ago)
- Language: HTML
- Homepage: https://scverse.org
- Size: 69.6 MB
- Stars: 3
- Watchers: 8
- Forks: 7
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# scverse.org
This is a website for [scverse.org](https://scverse.org). This version uses [Hugo](https://gohugo.io/) to build it.
## Repository structure
### Content
Most of the times, only the content has to be modified. Content is stored as [TOML](https://toml.io/en/) in `.md` files in [`/content`](/content). E.g. to modify the contents of the tutorials page, one has to look inside [`/content/learn/_index.md`](/content/learn/_index.md).
### Styles
For style sheets, [SCSS](https://sass-lang.com/) is used. Modify [`/assets/main.scss`](/assets/main.scss) to change styles.
### Layout
Modifying layout is only required when pages have to be restuctured or new pages are to be added. Look inside [`/layout`](/layout) for that. [Hugo Templating](https://gohugo.io/templates/introduction/) is used to work with content from [`/content`](/content).
## Running locally
To build the website (with hot reload), [install Hugo](https://gohugo.io/getting-started/installing/) and run
```sh
hugo server --buildFuture -D
```