config.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. baseURL = "https://ojbk.im"
  2. languageCode = "zh-hans"
  3. title = "Track3's Blog"
  4. staticDir = ["static", "content-static"]
  5. hasCJKLanguage = true
  6. rssLimit = 10
  7. copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License."
  8. googleAnalytics = "UA-125057333-1"
  9. [author]
  10. name = "Track3"
  11. [markup]
  12. defaultMarkdownHandler = "goldmark"
  13. [markup.highlight]
  14. codeFences = true
  15. guessSyntax = false
  16. noClasses = false
  17. [markup.blackFriday]
  18. hrefTargetBlank = true
  19. [taxonomies]
  20. tag = "tags"
  21. [params]
  22. dateform = "Jan 2, 2006"
  23. dateformShort = "Jan 02"
  24. dateformNum = "2006-01-02"
  25. dateformNumTime = "2006-01-02 15:04"
  26. accentColor = "#54BAB9"
  27. images = ["apple-touch-icon.png"]
  28. # bgImg = "/img/bg.jpg"
  29. gitUrl = "https://github.com/Track3/blog/commit/"
  30. [[params.social]]
  31. name = "twitter"
  32. url = "https://twitter.com/ThatTrack3"
  33. [[params.social]]
  34. name = "telegram"
  35. url = "http://t.me/ThatTrack3"
  36. [[params.social]]
  37. name = "github"
  38. url = "https://github.com/Track3"
  39. [menu]
  40. [[menu.main]]
  41. name = "Writing"
  42. url = "/posts/"
  43. weight = 20
  44. [[menu.main]]
  45. name = "Friends"
  46. url = "/friends/"
  47. weight = 30
  48. [[menu.main]]
  49. name = "About"
  50. url = "/about/"
  51. weight = 40