1
0

config.toml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. [[menu.main]]
  54. name = "Blog"
  55. weight = 1
  56. url = "/posts/"
  57. [[menu.main]]
  58. name = "About"
  59. weight = 2
  60. url = "/about/"
  61. [[menu.main]]
  62. name = "Projects"
  63. weight = 3
  64. url = "/projects/"
  65. [[menu.main]]
  66. name = "Contact me"
  67. weight = 5
  68. url = "/contact/"
  69. [languages]
  70. [languages.en]
  71. languagename = "English" # The language name to be displayed in the selector.
  72. title = "John Doe"
  73. # You can configure the theme parameter for each language.
  74. [languages.en.params]
  75. author = "John Doe"
  76. info = "Full Stack DevOps and Magician"
  77. description = "John Doe's personal website"
  78. keywords = "blog,developer,personal"
  79. [languages.en.menu] # It is possible to change the menu too.
  80. [[languages.en.menu.main]]
  81. name = "About"
  82. weight = 1.0
  83. url = "/about/"
  84. [[languages.en.menu.main]]
  85. name = "Blog"
  86. weight = 2.0
  87. url = "/posts/"
  88. [[languages.en.menu.main]]
  89. name = "Projects"
  90. weight = 3
  91. url = "/projects/"
  92. [[languages.en.menu.main]]
  93. name = "Contact me"
  94. weight = 5
  95. url = "/contact/"
  96. [languages.pl]
  97. languagename = "Polski"
  98. title = "John Doe po polsku"
  99. [languages.pl.params]
  100. author = "John Doe"
  101. description = "Strona domowa John'a Doe"
  102. keywords = "blog,developer,strona domowa"
  103. info = "Full Stack DevOps i Magik"
  104. [languages.pl.menu]
  105. [[languages.pl.menu.main]]
  106. name = "O mnie"
  107. weight = 1.0
  108. url = "/pl/about/"
  109. [[languages.pl.menu.main]]
  110. name = "Blog"
  111. weight = 2.0
  112. url = "/pl/posts/"
  113. [[languages.pl.menu.main]]
  114. name = "projektowanie"
  115. weight = 3
  116. url = "/projektowanie/"
  117. [[languages.pl.menu.main]]
  118. name = "kontakt"
  119. weight = 5
  120. url = "/kontakt/"