diff options
| author | Serghei Iakovlev <egrep@protonmail.ch> | 2022-05-08 18:47:25 +0200 |
|---|---|---|
| committer | Serghei Iakovlev <egrep@protonmail.ch> | 2022-05-08 18:47:25 +0200 |
| commit | b29419c9c72bbc2d605addabf0dfd84a7f41b88b (patch) | |
| tree | 4199578140684b30d7fb93e5c28b86db39442c83 /exampleSite/config.toml | |
| parent | 40288d1362e1074c6e2c0d0d9de5a2d59bc86fb5 (diff) | |
| download | gohugo-theme-ed-b29419c9c72bbc2d605addabf0dfd84a7f41b88b.tar.gz | |
Provide ability to list posts on main page
Diffstat (limited to 'exampleSite/config.toml')
| -rw-r--r-- | exampleSite/config.toml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 89ce3f6..823c22f 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -13,9 +13,8 @@ resourceDir = '../resources' languageDirection = "ltr" [params] - # Site author name + # Site author name. For multiple authors use: ['Me', 'You'] author = 'John Doe' - # author: ['Me', 'You'] # multiple authors # Site description. Used in meta description description = 'Ed is a Hugo theme designed for textual editors based on minimal computing principles, and focused on legibility and flexibility.' # Color scheme. Options: red, orange, magenta, cyan, blue, brown @@ -24,6 +23,14 @@ resourceDir = '../resources' tagline = 'a Hugo theme for minimal editions' # Custom footer text footer = '' + # Sections to be displayed in the main page + main_sections = ['post', 'drama', 'narrative', 'poem'] + # Order of post meta information + post_meta = ['date'] + # Posts date format, for example: 2006-01-02 + dateformat = 'January 02, 2006' + # Show "Read more" button in list if true + readmore = false [params.assets] # Relative paths to icons |
