1
0

config.toml 2.9 KB

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