Update README.md

This commit is contained in:
zzossig 2020-01-01 14:40:05 +09:00
parent b96c310008
commit 7e3531f3b7
2 changed files with 43 additions and 1 deletions

View File

@ -547,7 +547,27 @@ root/config/_default/menus.en.toml file
weight = 6
```
And we are good to go.
4. 추가적으로, date를 미래의 날짜를 쓰고 싶으시면 다음 단계를 따라서 해주세요.
- 다음 경로의 설정파일(root/config/_default/config.toml)에서 `buildFuture`를 추가해주세요.
```toml
...
buildFuture = true
...
```
- talks폴더의 마크다운 파일에 `publishDate`를 추가해주세요. root/content/talks/myLinks.md
```yaml
---
title:
date:
publishDate: 2020-02-20
...
---
...
```
## Multi Language

View File

@ -542,6 +542,28 @@ links:
And we are good to go.
4. Additionally, if you want to use a future date for the talks page, you need more things to do.
- add config variable named `buildFuture` at root/config/_default/config.toml
```toml
...
buildFuture = true
...
```
- add publishDate front matter to your md file at root/content/talks/myLinks.md
```yaml
---
title:
date:
publishDate: 2020-02-20
...
---
...
```
## Multi Language
The default language of this theme is English. If you want to use another language, follow these steps