config.toml 936 B

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