hugo.toml 2.3 KB

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