config.toml 901 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. [[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/"