hugo.toml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. [services]
  17. [services.googleAnalytics]
  18. id = 'G-YP8WK3KZF1'
  19. [module]
  20. [[module.imports]]
  21. path = 'github.com/hugomods/images'
  22. [[module.imports]]
  23. path = 'github.com/LordMathis/hugo-theme-nightfall'
  24. [menu]
  25. [[menu.header]]
  26. identifier = "posts"
  27. name = "posts"
  28. url = "/posts/"
  29. weight = 1
  30. [[menu.header]]
  31. identifier = "projects"
  32. name = "projects"
  33. url = "/projects/"
  34. weight = 2
  35. [[menu.header]]
  36. identifier = "about"
  37. name = "about"
  38. url = "/about/"
  39. weight = 3
  40. [params]
  41. user = "me"
  42. hostname = "codeskraps.com"
  43. sitedescription = 'Mobile development blog by Carles Sentis, sharing expertise in Android, iOS, and Kotlin Multiplatform development'
  44. readingTime = true
  45. published = true
  46. footerHtml = 'CC 2025, Built with <a href="https://gohugo.io" class="footerLink">Hugo</a>'
  47. enableOpenGraph = true
  48. enableTwitterCards = true
  49. [params.author]
  50. name = "codeskraps"
  51. email = "me@codeskraps.com"
  52. headline = "Senior Mobile Engineer"
  53. bio = "Mobile developer with extensive experience in Android, iOS, and cross-platform solutions"
  54. [params.styles]
  55. color = "#2fe7ed"
  56. [[params.social]]
  57. key = 0
  58. name = "repo"
  59. url = "https://repo.codeskraps.com/codeskraps"
  60. target = "_blank"
  61. aria = "Repo Profile"
  62. [[params.social]]
  63. key = 1
  64. name = "github"
  65. url = "https://github.com/codeskraps"
  66. target = "_blank"
  67. aria = "GitHub Profile"
  68. [[params.social]]
  69. key = 2
  70. name = "google play"
  71. url = "https://play.google.com/store/apps/developer?id=Codeskraps"
  72. target = "_blank"
  73. aria = "Google Play"
  74. [[params.social]]
  75. key = 3
  76. name = "linkedin"
  77. url = "https://www.linkedin.com/in/carles-sentis-4a072130"
  78. target = "_blank"
  79. aria = "LinkedIn Profile"
  80. [[params.social]]
  81. key = 4
  82. name = "email"
  83. url = "mailto:me@codeskraps.com"
  84. aria = "Email me"