~jacksonchen666/after-dark-modified

33def459cc126c45d9dc732cc85663e9423bf2a7 — Vincent Prouillet 3 years ago 9f1cc6c
Update for newer Zola
2 files changed, 6 insertions(+), 6 deletions(-)

M README.md
M config.toml
M README.md => README.md +4 -4
@@ 13,8 13,8 @@
First download this theme to your `themes` directory:

```bash
$ cd themes
$ git clone https://github.com/getzola/after-dark.git
cd themes
git clone https://github.com/getzola/after-dark.git
```
and then enable it in your `config.toml`:



@@ 35,8 35,8 @@ The theme requires tags and categories taxonomies to be enabled in your `config.
```toml
taxonomies = [
    # You can enable/disable RSS
    {name = "categories", rss = true},
    {name = "tags", rss = true},
    {name = "categories", feed = true},
    {name = "tags", feed = true},
]
```
If you want to paginate taxonomies pages, you will need to overwrite the templates

M config.toml => config.toml +2 -2
@@ 5,8 5,8 @@ description = ""
generate_feed = true

taxonomies = [
    {name = "categories", rss = true},
    {name = "tags", rss = true},
    {name = "categories", feed = true},
    {name = "tags", feed = true},
]

[extra]