hugo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. [params.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.goldmark.extensions.typographer]
  20. disable = true
  21. [markup.highlight]
  22. codeFences = true
  23. guessSyntax = false
  24. noClasses = false
  25. [taxonomies]
  26. tag = "tags"
  27. [params]
  28. images = ["og-image.png"]
  29. [menu]
  30. [[menu.main]]
  31. name = "Home"
  32. pageref = "/"
  33. weight = 1
  34. [menu.main.params]
  35. description = "主页"
  36. [[menu.main]]
  37. name = "Writing"
  38. pageref = "/writing"
  39. weight = 10
  40. [menu.main.params]
  41. description = "文章归档"
  42. [[menu.main]]
  43. name = "Gallery"
  44. pageref = "/gallery"
  45. weight = 20
  46. [menu.main.params]
  47. description = "相册"
  48. [[menu.main]]
  49. name = "Link"
  50. pageref = "/link"
  51. weight = 30
  52. [menu.main.params]
  53. description = "链接与留言板"
  54. [[menu.main]]
  55. name = "About"
  56. pageref = "/about"
  57. weight = 40
  58. [menu.main.params]
  59. description = "关于"