Closed lukaprincic closed 2 years ago
Hey,
From what I can see you're copying the theme config and overwriting the site's main Zola config.toml
. Ideally you should not do that but just add the required configuration to activate the theme and what it needs for it to work (e.g. the taxonomies). One missing configuration item is that as it stands now you're not telling zola which theme to use.
I'd recommend you start fresh and do as you described but without copying Anpu's config.toml
. Instead just add these two configuration items to the main config.toml
of your site:
theme = "anpu"
taxonomies = [
{ name = "categories" },
{ name = "tags" },
]
Cheers!
when I do:
$ zola init $ git clone https://github.com/zbrox/anpu-zola-theme.git themes/anpu $ cp -r themes/anpu/content/* content/ $ cp themes/anpu/config.toml . $ zola serve
i get error:
$ zola --version zola 0.15.2
What am I doing wrong?