hugo.toml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. umamiDataDoNotTrack = true
  54. umamiWebsiteId = "a80a52da-0b7d-4faf-9dfc-ee6ca5a8421f"
  55. [params.author]
  56. name = "codeskraps"
  57. email = "me@codeskraps.com"
  58. headline = "Senior Mobile Engineer"
  59. bio = "Mobile developer with extensive experience in Android, iOS, and cross-platform solutions"
  60. [params.styles]
  61. color = "#2fe7ed"
  62. [[params.social]]
  63. key = 0
  64. name = "repo"
  65. url = "https://repo.codeskraps.com/codeskraps"
  66. target = "_blank"
  67. aria = "Repo Profile"
  68. [[params.social]]
  69. key = 1
  70. name = "github"
  71. url = "https://github.com/codeskraps"
  72. target = "_blank"
  73. aria = "GitHub Profile"
  74. [[params.social]]
  75. key = 2
  76. name = "google play"
  77. url = "https://play.google.com/store/apps/developer?id=Codeskraps"
  78. target = "_blank"
  79. aria = "Google Play"
  80. [[params.social]]
  81. key = 3
  82. name = "linkedin"
  83. url = "https://www.linkedin.com/in/carles-sentis-4a072130"
  84. target = "_blank"
  85. aria = "LinkedIn Profile"
  86. [[params.social]]
  87. key = 4
  88. name = "email"
  89. url = "mailto:me@codeskraps.com"
  90. aria = "Email me"
  91. [[params.social]]
  92. key = 5
  93. name = "rss"
  94. url = "/index.xml"
  95. target = "_blank"
  96. aria = "RSS Feed"