config.toml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. [[params.social]]
  68. name = "RSS"
  69. icon = "fas fa-rss"
  70. weight = 6
  71. url = "https://myhugosite.com/index.xml"
  72. rel = "alternate"
  73. type = "application/rss+xml"
  74. [languages]
  75. [languages.en]
  76. languagename = "English"
  77. [languages.en.menu]
  78. [[languages.en.menu.main]]
  79. name = "About"
  80. weight = 1
  81. url = "about/"
  82. [[languages.en.menu.main]]
  83. name = "Blog"
  84. weight = 2
  85. url = "posts/"
  86. [[languages.en.menu.main]]
  87. name = "Projects"
  88. weight = 3
  89. url = "projects/"
  90. [[languages.en.menu.main]]
  91. name = "Contact me"
  92. weight = 5
  93. url = "contact/"
  94. [languages.pt-br]
  95. languagename = "Português"
  96. title = "João Ninguém"
  97. [languages.pt-br.params]
  98. author = "João Ninguém"
  99. info = "Full Stack DevOps e Mágico"
  100. description = "Sítio pessoal de João Ninguém"
  101. keywords = "blog,desenvolvedor,pessoal"
  102. footercontent = "Coloque algum texto aqui."
  103. [languages.pt-br.menu]
  104. [[languages.pt-br.menu.main]]
  105. name = "Sobre"
  106. weight = 1
  107. url = "about/"
  108. [[languages.pt-br.menu.main]]
  109. name = "Blog"
  110. weight = 2
  111. url = "posts/"
  112. [[languages.pt-br.menu.main]]
  113. name = "Projetos"
  114. weight = 3
  115. url = "projects/"
  116. [[languages.pt-br.menu.main]]
  117. name = "Contato"
  118. weight = 5
  119. url = "contact/"