config.toml 3.2 KB

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