config.toml 2.8 KB

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