1
0

config.toml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. avatarurl = "images/avatar.jpg"
  17. footercontent = "Enter a text here."
  18. hideCredits = false
  19. hideCopyright = false
  20. # Custom CSS
  21. custom_css = []
  22. [[params.social]]
  23. name = "Github"
  24. weight = 1
  25. url = "https://github.com/johndoe/"
  26. [[params.social]]
  27. name = "Twitter"
  28. weight = 2
  29. url = "https://twitter.com/johndoe/"
  30. [[params.social]]
  31. name = "LinkedIn"
  32. weight = 3
  33. url = "https://www.linkedin.com/in/johndoe/"
  34. [[menu.main]]
  35. name = "Blog"
  36. weight = 1
  37. url = "/posts/"
  38. [[menu.main]]
  39. name = "About"
  40. weight = 2
  41. url = "/about/"
  42. [[menu.main]]
  43. name = "Projects"
  44. weight = 3
  45. url = "/projects/"
  46. [[menu.main]]
  47. name = "Contact me"
  48. weight = 5
  49. url = "/contact/"
  50. [languages]
  51. [languages.en]
  52. languagename = "English" # The language name to be displayed in the selector.
  53. title = "John Doe"
  54. # You can configure the theme parameter for each language.
  55. [languages.en.params]
  56. author = "John Doe"
  57. info = "Full Stack DevOps and Magician"
  58. description = "John Doe's personal website"
  59. keywords = "blog,developer,personal"
  60. [languages.en.menu] # It is possible to change the menu too.
  61. [[languages.en.menu.main]]
  62. name = "About"
  63. weight = 1.0
  64. url = "/about/"
  65. [[languages.en.menu.main]]
  66. name = "Blog"
  67. weight = 2.0
  68. url = "/posts/"
  69. [[languages.en.menu.main]]
  70. name = "Projects"
  71. weight = 3
  72. url = "/projects/"
  73. [[languages.en.menu.main]]
  74. name = "Contact me"
  75. weight = 5
  76. url = "/contact/"
  77. [languages.pl]
  78. languagename = "Polski"
  79. title = "John Doe po polsku"
  80. [languages.pl.params]
  81. author = "John Doe"
  82. description = "Strona domowa John'a Doe"
  83. keywords = "blog,developer,strona domowa"
  84. info = "Full Stack DevOps i Magik"
  85. [languages.pl.menu]
  86. [[languages.pl.menu.main]]
  87. name = "O mnie"
  88. weight = 1.0
  89. url = "/pl/about/"
  90. [[languages.pl.menu.main]]
  91. name = "Blog"
  92. weight = 2.0
  93. url = "/pl/posts/"
  94. [[languages.pl.menu.main]]
  95. name = "projektowanie"
  96. weight = 3
  97. url = "/projektowanie/"
  98. [[languages.pl.menu.main]]
  99. name = "kontakt"
  100. weight = 5
  101. url = "/kontakt/"