
Multi Author
Enable multi-author feature
Multi-author feature is based on Hugo’s taxonomies, authors is one kind of taxonomy. To enable the feature, you need to edit your hugo.toml, add author = "authors"
in the [Taxonomies]
section.
# hugo.toml
[Taxonomies]
tag = "tags"
category = "categories"
author = "authors"
Avatars
# content/authors/EXAMPLE/_index.md
title: "Example Author"
avatar:
image: one-avatar.png
alt: ...
cover:
image: background.png
alt: ...
You can check Taxonomies to get more information.