1
0

config.toml 3.2 KB

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