config.toml 874 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. [permalinks]
  11. posts = "posts/:title/"
  12. default = ":title/"
  13. [params]
  14. author = "John Doe"
  15. description = "John Doe's personal website"
  16. keywords = "blog,developer,personal"
  17. info = "Full Stack DevOps and Magician"
  18. [[params.social]]
  19. name = "Github"
  20. weight = 1
  21. url = "https://github.com/johndoe/"
  22. [[params.social]]
  23. name = "Twitter"
  24. weight = 2
  25. url = "https://twitter.com/johndoe/"
  26. [[params.social]]
  27. name = "LinkedIn"
  28. weight = 3
  29. url = "https://www.linkedin.com/in/johndoe/"
  30. [[menu.main]]
  31. name = "Blog"
  32. weight = 1
  33. url = "/posts/"
  34. [[menu.main]]
  35. name = "About"
  36. weight = 2
  37. url = "/about/"