config.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 2"
  24. dateformNum = "2006-01-02"
  25. dateformNumTime = "2006-01-02 15:04"
  26. images = ["apple-touch-icon.png"]
  27. gitUrl = "https://github.com/Track3/blog/commit/"
  28. [[params.social]]
  29. name = "twitter"
  30. url = "https://twitter.com/ThatTrack3"
  31. [[params.social]]
  32. name = "telegram"
  33. url = "http://t.me/ThatTrack3"
  34. [[params.social]]
  35. name = "github"
  36. url = "https://github.com/Track3"
  37. [menu]
  38. [[menu.main]]
  39. name = "Writing"
  40. url = "/posts/"
  41. weight = 10
  42. [[menu.main]]
  43. name = "Friends"
  44. url = "/friends/"
  45. weight = 20
  46. [[menu.main]]
  47. name = "About"
  48. url = "/about/"
  49. weight = 30