1
0

config.toml 974 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. baseurl = "http://www.example.com"
  2. title = "johndoe"
  3. theme = "coder"
  4. languagecode = "en"
  5. paginate = 20
  6. canonifyurls = true
  7. pygmentsstyle = "b2"
  8. pygmentscodefences = true
  9. pygmentscodefencesguesssyntax = true
  10. disqusShortname = "yourdiscussshortname"
  11. [params]
  12. author = "John Doe"
  13. description = "John Doe's personal website"
  14. keywords = "blog,developer,personal"
  15. info = "Full Stack DevOps and Magician"
  16. hideCredits = false
  17. hideCopyright = false
  18. # Custom CSS
  19. custom_css = []
  20. # RTL support
  21. rtl = false
  22. [[params.social]]
  23. name = "Github"
  24. weight = 1
  25. url = "https://github.com/johndoe/"
  26. [[params.social]]
  27. name = "Twitter"
  28. weight = 2
  29. url = "https://twitter.com/johndoe/"
  30. [[params.social]]
  31. name = "LinkedIn"
  32. weight = 3
  33. url = "https://www.linkedin.com/in/johndoe/"
  34. [[menu.main]]
  35. name = "Blog"
  36. weight = 1
  37. url = "/posts/"
  38. [[menu.main]]
  39. name = "About"
  40. weight = 2
  41. url = "/about/"