config.toml 3.0 KB

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