Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.toml « exampleSite - github.com/jmablog/hugo-clinic-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c68e2051dad6b9fe3831f822372db26dc1e9fe7d (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
30
31
32
33
34
# It is advised to set baseURL to just "/"
baseURL = "https://example.com"
languageCode = "en-gb"
# Change this to the name of your own clinic / project if you prefer
title = "Hugo Clinic Notes"
enableEmoji = true
# Pagination is used in the calendar view. Set this to a higher number
# if you'd like to see more notes per page
paginate = 15
theme = "hugo-clinic-notes"

[taxonomies]
  patient = "patient"

[[params.menu]]
  name = "Calendar"
  url = "all/"

[[params.menu]]
  name = "Patients"
  url = "patient/"

[[params.menu]]
  name = "Docs"
  url = "docs/"

# If you want the table of contents at the top of individual notes to index
# further levels of header (default H2) set this to a higher number
[markup]
  [markup.tableOfContents]
    endLevel = 2

[frontmatter]
  lastmod = ["lastmod", ":fileModTime", ":default"]