Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zineland/zine
Zine - a simple and opinionated tool to build your own magazine.
https://github.com/zineland/zine
magazine rust rust-lang ssg static-site-generator zine
Last synced: 23 days ago
JSON representation
Zine - a simple and opinionated tool to build your own magazine.
- Host: GitHub
- URL: https://github.com/zineland/zine
- Owner: zineland
- License: apache-2.0
- Created: 2022-02-25T10:23:44.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-04T16:57:45.000Z (over 1 year ago)
- Last Synced: 2024-09-28T20:41:09.865Z (about 1 month ago)
- Topics: magazine, rust, rust-lang, ssg, static-site-generator, zine
- Language: Rust
- Homepage: https://zineland.github.io
- Size: 2.23 MB
- Stars: 882
- Watchers: 7
- Forks: 37
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- my-awesome-github-stars - zineland/zine - Zine - a simple and opinionated tool to build your own magazine. (Rust)
- my-awesome - zineland/zine - lang,ssg,static-site-generator,zine pushed_at:2023-07 star:0.9k fork:0.0k Zine - a simple and opinionated tool to build your own magazine. (Rust)
- awesome-rust-zh - zine - 杂志生成器
README
# zine
[![Crates.io](https://img.shields.io/crates/v/zine.svg)](https://crates.io/crates/zine)
![Crates.io](https://img.shields.io/crates/d/zine)
[![license-apache](https://img.shields.io/badge/license-Apache-yellow.svg)](./LICENSE)
[![dependency status](https://deps.rs/crate/zine/latest/status.svg)](https://deps.rs/crate/zine)Zine - a simple and opinionated tool to build your own magazine.
https://zineland.github.io
- Mobile-first.
- Intuitive and elegant magazine design.
- Best reading experiences.
- Theme customizable, extend friendly.
- RSS Feed supported.
- Open Graph Protocol supported.
- Article topic supported.
- I18n and l10n supported.
- Build into a static website, hosting anywhere.## Installation
`cargo install zine`
or `brew install zineland/tap/zine`
or `brew tap zineland/tap`, then `brew install zine`
## Get Started
Run `zine new your-zine-site`, you'll get following directory:
```
$ tree your-zine-site
your-zine-site
├── content # The content directory your issues located
│ └── issue-1 # The first issue directory
│ ├── 1-first.md # The first markdown article in this issue
│ └── zine.toml # The issue Zine config file
└── zine.toml # The root Zine config file of this project2 directories, 3 files
```Run `zine serve` to preview your zine site on your local computer:
```
$ cd your-zine-site$ zine serve
███████╗██╗███╗ ██╗███████╗
╚══███╔╝██║████╗ ██║██╔════╝
███╔╝ ██║██╔██╗ ██║█████╗
███╔╝ ██║██║╚██╗██║██╔══╝
███████╗██║██║ ╚████║███████╗
╚══════╝╚═╝╚═╝ ╚═══╝╚══════╝listening on http://127.0.0.1:3000
```Run `zine build` to build your zine site into a static website:
```
$ cd your-zine-site$ zine build
Build success! The build directory is `build`.
```## Some cool magazines powered by Zine
- [https://zineland.github.io](https://zineland.github.io) The zine documentation is built by zine itself.
- [https://rustmagazine.org](https://rustmagazine.org) The Rust Magazine.
- [https://2d2d.io](https://2d2d.io)
- [https://o11y.cn](https://o11y.cn)
- [https://thewhitepaper.github.io](https://thewhitepaper.github.io)## Docmentations
- [Getting started](https://zineland.github.io/getting-started)
- [Customization](https://zineland.github.io/customization)
- [Code blocks](https://zineland.github.io/code-blocks)
- [Advanced](https://zineland.github.io/advanced)## TODO
- [x] Support RSS Feed
- [x] Support render OGP meta
- [x] Support l10n
- [x] Support sitemap.xml
- [x] Support code syntax highlight
- [x] Support table of content
- [x] Support i18n
- [x] `zine serve` support live reload
- [x] Support article topic## License
This project is licensed under the [Apache-2.0 license](./LICENSE).