config.toml 3.1 KB

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