1
0

config.toml 850 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. [[params.social]]
  17. name = "Github"
  18. weight = 1
  19. url = "https://github.com/johndoe/"
  20. [[params.social]]
  21. name = "Twitter"
  22. weight = 2
  23. url = "https://twitter.com/johndoe/"
  24. [[params.social]]
  25. name = "LinkedIn"
  26. weight = 3
  27. url = "https://www.linkedin.com/in/johndoe/"
  28. [[menu.main]]
  29. name = "Blog"
  30. weight = 1
  31. url = "/posts/"
  32. [[menu.main]]
  33. name = "About"
  34. weight = 2
  35. url = "/about/"