🔧 Consolidate author configuration options

This commit is contained in:
James Panther
2021-08-17 15:35:04 +10:00
parent 154383068e
commit 18ed642ae4
7 changed files with 71 additions and 63 deletions
+5 -7
View File
@@ -22,22 +22,20 @@ A few things you need to set for a new installation:
baseURL = "https://your_domain.com"
languageCode = "en-AU"
title = "My awesome website"
```
It's also useful to set the author configuration in the `config/_default/author.toml` file. You can also add links to your profiles here to enable them in the theme.
```toml
# config/_default/author.toml
[author]
name = "Your name"
image = "img/author.jpg"
links = [
{ twitter = "https://twitter.com/username" }
]
```
The `[author]` configuration determines how the author information is displayed on the website. The image should be placed in the site's `static/` folder. Links will be displayed in the order they are listed.
Further detail about these configuration options is covered in the [Configuration](/docs/configuration/) section.
## Organising content
By default, Congo doesn't force you to use a particular content type. In doing so you are free to define your content as you wish. You might prefer _pages_ for a static site, _posts_ for a blog, or _projects_ for a portfolio.