config.toml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. # Series see also post count
  28. maxSeeAlsoItems = 5
  29. # Custom CSS
  30. custom_css = []
  31. [taxonomies]
  32. series = "series"
  33. [[params.social]]
  34. name = "Github"
  35. icon = "fab fa-github"
  36. weight = 1
  37. url = "https://github.com/johndoe/"
  38. [[params.social]]
  39. name = "Gitlab"
  40. icon = "fab fa-gitlab"
  41. weight = 2
  42. url = "https://gitlab.com/johndoe/"
  43. [[params.social]]
  44. name = "Twitter"
  45. icon = "fab fa-twitter"
  46. weight = 3
  47. url = "https://twitter.com/johndoe/"
  48. [[params.social]]
  49. name = "LinkedIn"
  50. icon = "fab fa-linkedin"
  51. weight = 4
  52. url = "https://www.linkedin.com/in/johndoe/"
  53. [[params.social]]
  54. name = "Medium"
  55. icon = "fab fa-medium"
  56. weight = 5
  57. url = "https://medium.com/@johndoe"
  58. [languages]
  59. [languages.en]
  60. languagename = "English"
  61. [[languages.en.menu.main]]
  62. name = "About"
  63. weight = 1
  64. url = "/about/"
  65. [[languages.en.menu.main]]
  66. name = "Blog"
  67. weight = 2
  68. url = "/posts/"
  69. [[languages.en.menu.main]]
  70. name = "Projects"
  71. weight = 3
  72. url = "/projects/"
  73. [[languages.en.menu.main]]
  74. name = "Contact me"
  75. weight = 5
  76. url = "/contact/"
  77. [languages.pt-br]
  78. languagename = "Português"
  79. title = "João Ninguém"
  80. [languages.pt-br.params]
  81. author = "João Ninguém"
  82. info = "Full Stack DevOps e Mágico"
  83. description = "Sítio pessoal de João Ninguém"
  84. keywords = "blog,desenvolvedor,pessoal"
  85. footercontent = "Coloque algum texto aqui."
  86. [languages.pt-br.menu]
  87. [[languages.pt-br.menu.main]]
  88. name = "Sobre"
  89. weight = 1
  90. url = "/pt-br/about/"
  91. [[languages.pt-br.menu.main]]
  92. name = "Blog"
  93. weight = 2
  94. url = "/pt-br/posts/"
  95. [[languages.pt-br.menu.main]]
  96. name = "Projetos"
  97. weight = 3
  98. url = "/pt-br/projects/"
  99. [[languages.pt-br.menu.main]]
  100. name = "Contato"
  101. weight = 5
  102. url = "/pt-br/contact/"