config.toml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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]
  66. [[languages.en.menu.main]]
  67. name = "About"
  68. weight = 1
  69. url = "about/"
  70. [[languages.en.menu.main]]
  71. name = "Blog"
  72. weight = 2
  73. url = "posts/"
  74. [[languages.en.menu.main]]
  75. name = "Projects"
  76. weight = 3
  77. url = "projects/"
  78. [[languages.en.menu.main]]
  79. name = "Contact me"
  80. weight = 5
  81. url = "contact/"
  82. [languages.pt-br]
  83. languagename = "Português"
  84. title = "João Ninguém"
  85. [languages.pt-br.params]
  86. author = "João Ninguém"
  87. info = "Full Stack DevOps e Mágico"
  88. description = "Sítio pessoal de João Ninguém"
  89. keywords = "blog,desenvolvedor,pessoal"
  90. footercontent = "Coloque algum texto aqui."
  91. [languages.pt-br.menu]
  92. [[languages.pt-br.menu.main]]
  93. name = "Sobre"
  94. weight = 1
  95. url = "about/"
  96. [[languages.pt-br.menu.main]]
  97. name = "Blog"
  98. weight = 2
  99. url = "posts/"
  100. [[languages.pt-br.menu.main]]
  101. name = "Projetos"
  102. weight = 3
  103. url = "projects/"
  104. [[languages.pt-br.menu.main]]
  105. name = "Contato"
  106. weight = 5
  107. url = "contact/"