hugo.toml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. baseurl = "https://onec.me"
  2. DefaultContentLanguage = "en"
  3. title = "onec.me"
  4. theme = "beautifulhugo"
  5. pygmentsStyle = "doom-one"
  6. pygmentsUseClasses = false
  7. pygmentsCodeFences = true
  8. pygmentsCodefencesGuessSyntax = true
  9. enableGitInfo = true
  10. useHLJS = false
  11. [Services]
  12. [Services.Disqus]
  13. # Shortname = "XXX"
  14. [Services.googleAnalytics]
  15. # id = "XXX"
  16. [permalinks]
  17. posts = "/:title"
  18. [Params]
  19. homeTitle = "Hello." # Set a different text for the header on the home page
  20. subtitle = "I am a software engineer with one C in my name, based in Maine. I work with the computer equivalent of duct tape."
  21. mainSections = ["post","posts"]
  22. #logo = "img/avatar-icon.png" # Expecting square dimensions
  23. favicon = "img/favicon.ico"
  24. dateFormat = "January 2, 2006"
  25. commit = false
  26. rss = true
  27. comments = false
  28. readingTime = true
  29. wordCount = true
  30. useHLJS = true
  31. socialShare = true
  32. delayDisqus = true
  33. showRelatedPosts = true
  34. disclaimerText = "The opinions expressed herein are my own personal opinions and do not represent my employer’s view in any way."
  35. #[[Params.bigimg]]
  36. # src = "img/triangle.jpg"
  37. # desc = "Triangle"
  38. #[[Params.bigimg]]
  39. # src = "img/sphere.jpg"
  40. # desc = "Sphere"
  41. # # position: see values of CSS background-position.
  42. # position = "center top"
  43. #[[Params.bigimg]]
  44. # src = "img/hexagon.jpg"
  45. # desc = "Hexagon"
  46. [Params.author]
  47. # Set only your "username" for default hosts and full URLs otherwise (e.g., "https://MyGitLab.org/username")
  48. name = "Colin"
  49. website = "onec.me"
  50. email = "anything-but-this-user@onec.me"
  51. github = "https://github.com/powellc/"
  52. linkedin = "https://linkedin.com/in/colinpowell/"
  53. mastodon = "https://mastodon.sdf.org/@secstate"
  54. strava = "secstate"
  55. lastfm = "powellc"
  56. [[menu.main]]
  57. name = "Blog"
  58. url = ""
  59. weight = 1
  60. [[menu.main]]
  61. name = "About"
  62. url = "about"
  63. weight = 3
  64. [[menu.main]]
  65. name = "Tags"
  66. url = "tags"
  67. weight = 3
  68. [[menu.main]]
  69. identifier = "org"
  70. name = "Org"
  71. weight = 2
  72. [[menu.main]]
  73. parent = "org"
  74. name = "Books"
  75. url = "org/books"
  76. weight = 1
  77. [[menu.main]]
  78. parent = "org"
  79. name = "projects"
  80. url = "org/projects"
  81. weight = 2
  82. [[menu.main]]
  83. parent = "org"
  84. name = "docs"
  85. url = "org/docs"
  86. weight = 3