1
0

config.toml 3.3 KB

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