config.toml 3.0 KB

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