51 lines
1.2 KiB
Markdown
51 lines
1.2 KiB
Markdown
|
|
+++
|
|
title = "zola-paper"
|
|
description = "A clean theme inspired from hugo-paper."
|
|
template = "theme.html"
|
|
date = 2021-01-09T22:53:10+09:00
|
|
|
|
[extra]
|
|
created = 2021-01-09T22:53:10+09:00
|
|
updated = 2021-01-09T22:53:10+09:00
|
|
repository = "https://github.com/schoenenberg/zola-paper.git"
|
|
homepage = "https://github.com/schoenenberg/zola-paper"
|
|
minimum_version = "0.11.0"
|
|
license = "MIT"
|
|
demo = "https://schoenenberg.github.io/zola-paper"
|
|
|
|
[extra.author]
|
|
name = "Maximilian Schoenenberg"
|
|
homepage = "https://www.schoenenberg.dev"
|
|
+++
|
|
|
|
# Zola-Paper
|
|
A clean theme inspired from hugo-paper.
|
|
|
|
[Zola](https://getzola.org) port of [Hugo-Paper](https://github.com/nanxiaobei/hugo-paper/) (with a few tweaks).
|
|
|
|
**Demo:** [https://schoenenberg.github.com/zola-paper](https://schoenenberg.github.com/zola-paper)
|
|
|
|
![Screenshot](screenshot.png)
|
|
|
|
## Installation
|
|
|
|
The easiest way to install this theme is to either clone it ...
|
|
|
|
```bash
|
|
git clone https://github.com/schoenenberg/zola-paper.git themes/zola-paper
|
|
```
|
|
|
|
... or to use it as a submodule.
|
|
|
|
```bash
|
|
git submodule add https://github.com/schoenenberg/zola-paper.git themes/zola-paper
|
|
```
|
|
|
|
Either way, you will have to enable the theme in your `config.toml`.
|
|
|
|
```toml
|
|
theme = "zola-paper"
|
|
```
|
|
|
|
|