1
0

config.toml 3.2 KB

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