1
0

config.toml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. baseurl = "http://www.example.com"
  2. title = "johndoe"
  3. theme = "hugo-coder"
  4. languagecode = "en"
  5. paginate = 20
  6. canonifyurls = true
  7. pygmentsstyle = "b2"
  8. pygmentscodefences = true
  9. pygmentscodefencesguesssyntax = true
  10. disqusShortname = "yourdiscussshortname"
  11. [params]
  12. author = "John Doe"
  13. description = "John Doe's personal website"
  14. keywords = "blog,developer,personal"
  15. info = "Full Stack DevOps and Magician"
  16. avatarurl = "images/avatar.jpg"
  17. footercontent = "Enter a text here."
  18. dateformat = "January 2, 2006"
  19. hideCredits = false
  20. hideCopyright = false
  21. rtl = false
  22. # Custom CSS
  23. custom_css = []
  24. [[params.social]]
  25. name = "Github"
  26. icon = "fab fa-github"
  27. weight = 1
  28. url = "https://github.com/johndoe/"
  29. [[params.social]]
  30. name = "Gitlab"
  31. icon = "fab fa-gitlab"
  32. weight = 2
  33. url = "https://gitlab.com/johndoe/"
  34. [[params.social]]
  35. name = "Twitter"
  36. icon = "fab fa-twitter"
  37. weight = 3
  38. url = "https://twitter.com/johndoe/"
  39. [[params.social]]
  40. name = "LinkedIn"
  41. icon = "fab fa-linkedin"
  42. weight = 4
  43. url = "https://www.linkedin.com/in/johndoe/"
  44. [[params.social]]
  45. name = "Medium"
  46. icon = "fab fa-medium"
  47. weight = 5
  48. url = "https://medium.com/@johndoe"
  49. [[menu.main]]
  50. name = "Blog"
  51. weight = 1
  52. url = "/posts/"
  53. [[menu.main]]
  54. name = "About"
  55. weight = 2
  56. url = "/about/"
  57. [[menu.main]]
  58. name = "Projects"
  59. weight = 3
  60. url = "/projects/"
  61. [[menu.main]]
  62. name = "Contact me"
  63. weight = 5
  64. url = "/contact/"
  65. [languages]
  66. [languages.en]
  67. languagename = "English" # The language name to be displayed in the selector.
  68. title = "John Doe"
  69. # You can configure the theme parameter for each language.
  70. [languages.en.params]
  71. author = "John Doe"
  72. info = "Full Stack DevOps and Magician"
  73. description = "John Doe's personal website"
  74. keywords = "blog,developer,personal"
  75. [languages.en.menu] # It is possible to change the menu too.
  76. [[languages.en.menu.main]]
  77. name = "About"
  78. weight = 1.0
  79. url = "/about/"
  80. [[languages.en.menu.main]]
  81. name = "Blog"
  82. weight = 2.0
  83. url = "/posts/"
  84. [[languages.en.menu.main]]
  85. name = "Projects"
  86. weight = 3
  87. url = "/projects/"
  88. [[languages.en.menu.main]]
  89. name = "Contact me"
  90. weight = 5
  91. url = "/contact/"
  92. [languages.pl]
  93. languagename = "Polski"
  94. title = "John Doe po polsku"
  95. [languages.pl.params]
  96. author = "John Doe"
  97. description = "Strona domowa John'a Doe"
  98. keywords = "blog,developer,strona domowa"
  99. info = "Full Stack DevOps i Magik"
  100. [languages.pl.menu]
  101. [[languages.pl.menu.main]]
  102. name = "O mnie"
  103. weight = 1.0
  104. url = "/pl/about/"
  105. [[languages.pl.menu.main]]
  106. name = "Blog"
  107. weight = 2.0
  108. url = "/pl/posts/"
  109. [[languages.pl.menu.main]]
  110. name = "projektowanie"
  111. weight = 3
  112. url = "/projektowanie/"
  113. [[languages.pl.menu.main]]
  114. name = "kontakt"
  115. weight = 5
  116. url = "/kontakt/"