config.toml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. since = 2019
  23. # Git Commit in Footer, uncomment the line below to enable it.
  24. commit = "https://github.com/luizdepra/hugo-coder/tree/"
  25. rtl = false
  26. # Specify light/dark colorscheme
  27. # Supported values:
  28. # "auto" (use preference set by browser)
  29. # "dark" (dark background, light foreground)
  30. # "light" (light background, dark foreground) (default)
  31. colorscheme = "light"
  32. # Series see also post count
  33. maxSeeAlsoItems = 5
  34. # Custom CSS
  35. custom_css = []
  36. # Custom JS
  37. custom_js = []
  38. [taxonomies]
  39. category = "categories"
  40. series = "series"
  41. tag = "tags"
  42. [[params.social]]
  43. name = "Github"
  44. icon = "fab fa-github"
  45. weight = 1
  46. url = "https://github.com/johndoe/"
  47. [[params.social]]
  48. name = "Gitlab"
  49. icon = "fab fa-gitlab"
  50. weight = 2
  51. url = "https://gitlab.com/johndoe/"
  52. [[params.social]]
  53. name = "Twitter"
  54. icon = "fab fa-twitter"
  55. weight = 3
  56. url = "https://twitter.com/johndoe/"
  57. [[params.social]]
  58. name = "LinkedIn"
  59. icon = "fab fa-linkedin"
  60. weight = 4
  61. url = "https://www.linkedin.com/in/johndoe/"
  62. [[params.social]]
  63. name = "Medium"
  64. icon = "fab fa-medium"
  65. weight = 5
  66. url = "https://medium.com/@johndoe"
  67. [languages]
  68. [languages.en]
  69. languagename = "English"
  70. [languages.en.menu]
  71. [[languages.en.menu.main]]
  72. name = "About"
  73. weight = 1
  74. url = "about/"
  75. [[languages.en.menu.main]]
  76. name = "Blog"
  77. weight = 2
  78. url = "posts/"
  79. [[languages.en.menu.main]]
  80. name = "Projects"
  81. weight = 3
  82. url = "projects/"
  83. [[languages.en.menu.main]]
  84. name = "Contact me"
  85. weight = 5
  86. url = "contact/"
  87. [languages.pt-br]
  88. languagename = "Português"
  89. title = "João Ninguém"
  90. [languages.pt-br.params]
  91. author = "João Ninguém"
  92. info = "Full Stack DevOps e Mágico"
  93. description = "Sítio pessoal de João Ninguém"
  94. keywords = "blog,desenvolvedor,pessoal"
  95. footercontent = "Coloque algum texto aqui."
  96. [languages.pt-br.menu]
  97. [[languages.pt-br.menu.main]]
  98. name = "Sobre"
  99. weight = 1
  100. url = "about/"
  101. [[languages.pt-br.menu.main]]
  102. name = "Blog"
  103. weight = 2
  104. url = "posts/"
  105. [[languages.pt-br.menu.main]]
  106. name = "Projetos"
  107. weight = 3
  108. url = "projects/"
  109. [[languages.pt-br.menu.main]]
  110. name = "Contato"
  111. weight = 5
  112. url = "contact/"