diff options
| author | Richard-Qin-X <richard.qin.001@gmail.com> | 2026-08-08 21:30:23 +0800 |
|---|---|---|
| committer | Richard-Qin-X <richard.qin.001@gmail.com> | 2026-08-08 21:30:23 +0800 |
| commit | bce6be90883b107285faa56acf0081b54daa3aa9 (patch) | |
| tree | 0893f99b5debe074f1596b6cfc6d3c86da34ca42 /hugo.toml | |
Initialize personal website
Diffstat (limited to 'hugo.toml')
| -rw-r--r-- | hugo.toml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..b1e705e --- /dev/null +++ b/hugo.toml @@ -0,0 +1,43 @@ +baseURL = "http://localhost:1314/" +title = "RICHARD QIN'S HOME PAGE" +languageCode = "en" +defaultContentLanguage = "en" +timeZone = "Asia/Shanghai" +uglyURLs = true +disableHugoGeneratorInject = true +disableKinds = ["taxonomy", "term", "sitemap"] +enableRobotsTXT = false + +[params] + owner = "Richard Qin" + identity = "richard@web:~/" + description = "Richard Qin's journal, technical notes, projects, and links." + email = "richard.qin.001@gmail.com" + sourceURL = "https://codeberg.org/Richard-Qin/rhomepage" + gitBase = "https://codeberg.org/Richard-Qin/rhomepage/src/branch/main" + contentLicense = "CC BY-SA 4.0" + +[permalinks] + journal = "/:year/:month/:slug" + notes = "/:sections/:slug" + +[outputs] + home = ["HTML", "RSS"] + section = ["HTML"] + page = ["HTML"] + +[outputFormats.RSS] + mediaType = "application/rss+xml" + baseName = "rss" + +[markup] + [markup.goldmark] + [markup.goldmark.renderer] + unsafe = true + [markup.highlight] + codeFences = false + guessSyntax = false + [markup.tableOfContents] + startLevel = 2 + endLevel = 3 + ordered = false |
