hugo.toml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. baseURL = 'https://codeskraps.com/'
  2. languageCode = 'en-us'
  3. title = 'codeskraps'
  4. description = 'Mobile development blog focused on Android, iOS, and cross-platform solutions with Kotlin Multiplatform'
  5. [taxonomies]
  6. tag = "tags"
  7. [markup]
  8. [markup.goldmark]
  9. [markup.goldmark.renderer]
  10. unsafe = true
  11. [markup.highlight]
  12. codeFences = true
  13. guessSyntax = true
  14. lineNos = false
  15. style = 'dracula'
  16. [outputs]
  17. home = ["HTML", "RSS"]
  18. section = ["HTML", "RSS"]
  19. taxonomy = ["HTML"]
  20. term = ["HTML", "RSS"]
  21. [module]
  22. [[module.imports]]
  23. path = 'github.com/hugomods/images'
  24. [[module.imports]]
  25. path = 'github.com/LordMathis/hugo-theme-nightfall'
  26. [menu]
  27. [[menu.header]]
  28. identifier = "posts"
  29. name = "posts"
  30. url = "/posts/"
  31. weight = 1
  32. [[menu.header]]
  33. identifier = "projects"
  34. name = "projects"
  35. url = "/projects/"
  36. weight = 2
  37. [[menu.header]]
  38. identifier = "about"
  39. name = "about"
  40. url = "/about/"
  41. weight = 3
  42. [params]
  43. user = "me"
  44. hostname = "codeskraps.com"
  45. sitedescription = 'Mobile development blog by Carles Sentis, sharing expertise in Android, iOS, and Kotlin Multiplatform development'
  46. readingTime = true
  47. published = true
  48. footerHtml = 'CC 2025, Built with <a href="https://gohugo.io" class="footerLink">Hugo</a> | Analytics by <a href="https://umami.codeskraps.com/" class="footerLink">Self-hosted Umami</a>'
  49. enableOpenGraph = true
  50. enableTwitterCards = true
  51. umami = true
  52. umamiScript = "https://umami.codeskraps.com/script.js"
  53. umamiWebsiteId = "a80a52da-0b7d-4faf-9dfc-ee6ca5a8421f"
  54. [params.author]
  55. name = "codeskraps"
  56. email = "me@codeskraps.com"
  57. headline = "Senior Mobile Engineer"
  58. bio = "Mobile developer with extensive experience in Android, iOS, and cross-platform solutions"
  59. [params.styles]
  60. color = "#2fe7ed"
  61. [[params.social]]
  62. key = 0
  63. name = "repo"
  64. url = "https://repo.codeskraps.com/codeskraps"
  65. target = "_blank"
  66. aria = "Repo Profile"
  67. [[params.social]]
  68. key = 1
  69. name = "github"
  70. url = "https://github.com/codeskraps"
  71. target = "_blank"
  72. aria = "GitHub Profile"
  73. [[params.social]]
  74. key = 2
  75. name = "google play"
  76. url = "https://play.google.com/store/apps/developer?id=Codeskraps"
  77. target = "_blank"
  78. aria = "Google Play"
  79. [[params.social]]
  80. key = 3
  81. name = "linkedin"
  82. url = "https://www.linkedin.com/in/carles-sentis-4a072130"
  83. target = "_blank"
  84. aria = "LinkedIn Profile"
  85. [[params.social]]
  86. key = 4
  87. name = "email"
  88. url = "mailto:me@codeskraps.com"
  89. aria = "Email me"
  90. [[params.social]]
  91. key = 5
  92. name = "rss"
  93. url = "/index.xml"
  94. target = "_blank"
  95. aria = "RSS Feed"