config.toml 808 B

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