config.toml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. baseurl = "http://www.example.com"
  2. title = "johndoe"
  3. theme = "hugo-coder"
  4. languagecode = "en"
  5. defaultcontentlanguage = "en"
  6. paginate = 20
  7. canonifyurls = true
  8. pygmentsstyle = "b2"
  9. pygmentscodefences = true
  10. pygmentscodefencesguesssyntax = true
  11. disqusShortname = "yourdiscussshortname"
  12. [params]
  13. author = "John Doe"
  14. description = "John Doe's personal website"
  15. keywords = "blog,developer,personal"
  16. info = "Full Stack DevOps and Magician"
  17. avatarurl = "images/avatar.jpg"
  18. footercontent = "Enter a text here."
  19. dateformat = "January 2, 2006"
  20. hideCredits = false
  21. hideCopyright = false
  22. # Git Commit in Footer, uncomment the line below to enable it.
  23. commit = "https://github.com/luizdepra/hugo-coder/tree/"
  24. rtl = false
  25. # Use inverted colors
  26. inverted = false
  27. # Custom CSS
  28. custom_css = []
  29. [taxonomies]
  30. series = "series"
  31. [[params.social]]
  32. name = "Github"
  33. icon = "fab fa-github"
  34. weight = 1
  35. url = "https://github.com/johndoe/"
  36. [[params.social]]
  37. name = "Gitlab"
  38. icon = "fab fa-gitlab"
  39. weight = 2
  40. url = "https://gitlab.com/johndoe/"
  41. [[params.social]]
  42. name = "Twitter"
  43. icon = "fab fa-twitter"
  44. weight = 3
  45. url = "https://twitter.com/johndoe/"
  46. [[params.social]]
  47. name = "LinkedIn"
  48. icon = "fab fa-linkedin"
  49. weight = 4
  50. url = "https://www.linkedin.com/in/johndoe/"
  51. [[params.social]]
  52. name = "Medium"
  53. icon = "fab fa-medium"
  54. weight = 5
  55. url = "https://medium.com/@johndoe"
  56. [languages]
  57. [languages.en]
  58. languagename = "English"
  59. [[languages.en.menu.main]]
  60. name = "About"
  61. weight = 1
  62. url = "/about/"
  63. [[languages.en.menu.main]]
  64. name = "Blog"
  65. weight = 2
  66. url = "/posts/"
  67. [[languages.en.menu.main]]
  68. name = "Projects"
  69. weight = 3
  70. url = "/projects/"
  71. [[languages.en.menu.main]]
  72. name = "Contact me"
  73. weight = 5
  74. url = "/contact/"
  75. [languages.pt-br]
  76. languagename = "Português"
  77. title = "João Ninguém"
  78. [languages.pt-br.params]
  79. author = "João Ninguém"
  80. info = "Full Stack DevOps e Mágico"
  81. description = "Sítio pessoal de João Ninguém"
  82. keywords = "blog,desenvolvedor,pessoal"
  83. footercontent = "Coloque algum texto aqui."
  84. [languages.pt-br.menu]
  85. [[languages.pt-br.menu.main]]
  86. name = "Sobre"
  87. weight = 1
  88. url = "/pt-br/about/"
  89. [[languages.pt-br.menu.main]]
  90. name = "Blog"
  91. weight = 2
  92. url = "/pt-br/posts/"
  93. [[languages.pt-br.menu.main]]
  94. name = "Projetos"
  95. weight = 3
  96. url = "/pt-br/projects/"
  97. [[languages.pt-br.menu.main]]
  98. name = "Contato"
  99. weight = 5
  100. url = "/pt-br/contact/"