hugo.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. rssLimit = 10
  8. copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License."
  9. [author]
  10. name = "Zakee"
  11. [markup]
  12. defaultMarkdownHandler = "goldmark"
  13. [markup.goldmark.renderer]
  14. unsafe = true
  15. [markup.highlight]
  16. codeFences = true
  17. guessSyntax = false
  18. noClasses = false
  19. # [markup.blackFriday]
  20. # hrefTargetBlank = true
  21. [taxonomies]
  22. tag = "tags"
  23. [params]
  24. dateform = "Jan 2, 2006"
  25. dateformShort = "Jan 02"
  26. dateformNum = "2006-01-02"
  27. dateformNumTime = "2006-01-02 15:04"
  28. description = "Zakee的个人博客"
  29. keywords = "Zakee,Track3,blog,博客,个人网站,中文独立博客"
  30. accentColor = "#54BAB9"
  31. images = ["apple-touch-icon.png"]
  32. # bgImg = "/img/bg.jpg"
  33. # gitUrl = "https://github.com/Track3/blog/commit/"
  34. [[params.social]]
  35. name = "twitter"
  36. url = "https://twitter.com/zakee_97"
  37. [[params.social]]
  38. name = "telegram"
  39. url = "http://t.me/zakee97"
  40. [[params.social]]
  41. name = "github"
  42. url = "https://github.com/Track3"
  43. [menu]
  44. [[menu.main]]
  45. name = "Writing"
  46. pageref = "/writing"
  47. weight = 10
  48. [[menu.main]]
  49. name = "Gallery"
  50. pageref = "/gallery"
  51. weight = 20
  52. [[menu.main]]
  53. name = "Link"
  54. pageref = "/link"
  55. weight = 30
  56. [[menu.main]]
  57. name = "About"
  58. pageref = "/about"
  59. weight = 40