blob: 7f8127413e8bb01978f61974c7defa8af2fcf572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
---
title: "Homepage"
date: "2024-10-14"
summary: "Homepage parameters"
description: "Homepage parameters"
toc: false
readTime: false
autonumber: true
math: false
showTags: false
---
The homepage offers minimal customization options, you can specify an intro, and a collection to display.
## Intro Section
Text you write in `content/home.md` will be embedded after the header on the homepage.
## Display a Collection
You can decide to include a collection in your homepage:
```toml
[params]
homeCollectionTitle = 'Posts'
homeCollection = 'posts'
```
The above example includes the `/posts` collection. Note that you can omit the title if you prefer.
|