hugo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. baseURL = "https://zak.ee"
  2. title = "Zakee's Planet"
  3. staticDir = ["static", "content-static"]
  4. languageCode = "zh-CN"
  5. defaultContentLanguage = 'zh'
  6. hasCJKLanguage = true
  7. copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License."
  8. [author]
  9. name = "Zakee"
  10. [markup]
  11. defaultMarkdownHandler = "goldmark"
  12. [markup.goldmark.renderer]
  13. unsafe = true
  14. [markup.goldmark.parser]
  15. wrapStandAloneImageWithinParagraph = false
  16. [markup.goldmark.parser.attribute]
  17. block = true
  18. title = true
  19. [markup.highlight]
  20. codeFences = true
  21. guessSyntax = false
  22. noClasses = false
  23. # [taxonomies]
  24. # tag = "tags"
  25. [params]
  26. images = ["apple-touch-icon.png"]
  27. [menu]
  28. [[menu.main]]
  29. name = "Home"
  30. pageref = "/"
  31. weight = 1
  32. [menu.main.params]
  33. description = "主页"
  34. [[menu.main]]
  35. name = "Writing"
  36. pageref = "/writing"
  37. weight = 10
  38. [menu.main.params]
  39. description = "文章归档"
  40. [[menu.main]]
  41. name = "Gallery"
  42. pageref = "/gallery"
  43. weight = 20
  44. [menu.main.params]
  45. description = "相册"
  46. [[menu.main]]
  47. name = "Link"
  48. pageref = "/link"
  49. weight = 30
  50. [menu.main.params]
  51. description = "链接与留言板"
  52. [[menu.main]]
  53. name = "About"
  54. pageref = "/about"
  55. weight = 40
  56. [menu.main.params]
  57. description = "关于"