Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakeswenson/zola-just-the-docs
Just The Docs ported from Jekyll to Zola
https://github.com/jakeswenson/zola-just-the-docs
just-the-docs rust zola zola-theme
Last synced: 21 days ago
JSON representation
Just The Docs ported from Jekyll to Zola
- Host: GitHub
- URL: https://github.com/jakeswenson/zola-just-the-docs
- Owner: jakeswenson
- License: mit
- Created: 2020-03-28T19:55:59.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-31T15:37:11.000Z (over 4 years ago)
- Last Synced: 2024-08-03T09:03:30.055Z (3 months ago)
- Topics: just-the-docs, rust, zola, zola-theme
- Language: CSS
- Homepage: https://zola-just-the-docs.now.sh
- Size: 68.4 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Zola `Just the Docs` theme
This is a port of the wonderful [`Just the Docs`][jtd] Jekyll theme to [Zola].[See it in action][demo].
[demo]: https://zola-jtd-demo.jakeswenson.now.sh/
[jtd]: https://pmarsceill.github.io/just-the-docs/
[Zola]: https://www.getzola.org/documentation/getting-started/overview/# Installation
[install-zola]: https://www.getzola.org/documentation/getting-started/installation/
[init]: https://www.getzola.org/documentation/getting-started/overview/#initialize-siteStart with [installing zola][install-zola] and [create a new site][init] if you haven't.
Next pull in the lastest version of this theme using `git subtree`:
```bash
git remote add zola-jtd [email protected]:jakeswenson/zola-just-the-docs.git
git subtree add --prefix themes/just-the-docs zola-jtd master
```[using-a-theme]: https://www.getzola.org/documentation/themes/installing-and-using-themes/#using-a-theme
and finally set your [theme variable][using-a-theme] in your `config.toml` to `just-the-docs`
```toml
theme = 'just-the-docs'
```# Update
```bash
git fetch zola-jtd
git subtree merge --prefix themes/just-the-docs zola-jtd/master
```