config.toml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. baseURL = 'http://hugo.monkeybox.org/'
  2. languageCode = 'en-us'
  3. DefaultContentLanguage = "en"
  4. title = 'Enjoy MonkeyBOX!'
  5. theme = "introduction"
  6. [deployment]
  7. # By default, files are uploaded in an arbitrary order.
  8. # Files that match the regular expressions in the "Order" list
  9. # will be uploaded first, in the listed order.
  10. order = [".jpg$", ".gif$", ".png$"]
  11. [[deployment.targets]]
  12. # An arbitrary name for this target.
  13. name = "s3_hugo.monkeybox.org"
  14. # The Go Cloud Development Kit URL to deploy to. Examples:
  15. # GCS; see https://gocloud.dev/howto/blob/#gcs
  16. # URL = "gs://<Bucket Name>"
  17. # S3; see https://gocloud.dev/howto/blob/#s3
  18. # For S3-compatible endpoints, see https://gocloud.dev/howto/blob/#s3-compatible
  19. # URL = "s3://<Bucket Name>?region=<AWS region>"
  20. URL = "s3://hugo.monkeybox.org?region=us-east-2"
  21. # Azure Blob Storage; see https://gocloud.dev/howto/blob/#azure
  22. # URL = "azblob://$web"
  23. # You can use a "prefix=" query parameter to target a subfolder of the bucket:
  24. # URL = "gs://<Bucket Name>?prefix=a/subfolder/"
  25. # If you are using a CloudFront CDN, deploy will invalidate the cache as needed.
  26. #cloudFrontDistributionID = <ID>
  27. # Optionally, you can include or exclude specific files.
  28. # See https://godoc.org/github.com/gobwas/glob#Glob for the glob pattern syntax.
  29. # If non-empty, the pattern is matched against the local path.
  30. # All paths are matched against in their filepath.ToSlash form.
  31. # If exclude is non-empty, and a local or remote file's path matches it, that file is not synced.
  32. # If include is non-empty, and a local or remote file's path does not match it, that file is not synced.
  33. # As a result, local files that don't pass the include/exclude filters are not uploaded to remote,
  34. # and remote files that don't pass the include/exclude filters are not deleted.
  35. # include = "**.html" # would only include files with ".html" suffix
  36. # exclude = "**.{jpg, png}" # would exclude files with ".jpg" or ".png" suffix
  37. # [[deployment.matchers]] configure behavior for files that match the Pattern.
  38. # See https://golang.org/pkg/regexp/syntax/ for pattern syntax.
  39. # Pattern searching is stopped on first match.
  40. # Samples:
  41. #[[deployment.matchers]]
  42. ## Cache static assets for 1 year.
  43. #pattern = "^.+\\.(js|css|svg|ttf)$"
  44. #cacheControl = "max-age=31536000, no-transform, public"
  45. #gzip = true
  46. #
  47. #[[deployment.matchers]]
  48. #pattern = "^.+\\.(png|jpg)$"
  49. #cacheControl = "max-age=31536000, no-transform, public"
  50. #gzip = false
  51. #
  52. #[[deployment.matchers]]
  53. ## Set custom content type for /sitemap.xml
  54. #pattern = "^sitemap\\.xml$"
  55. #contentType = "application/xml"
  56. #gzip = true
  57. #
  58. #[[deployment.matchers]]
  59. #pattern = "^.+\\.(html|xml|json)$"
  60. #gzip = true
  61. #######################################
  62. # introduction theme stuff
  63. #
  64. # Copied from the example site
  65. [params]
  66. themeStyle = "auto" # Choose "light" or "dark" or "auto"
  67. favicon = "/img/fav.ico" # Path to favicon file
  68. showMenu = true # Show navigation menu
  69. showRSSButton = false # Show rss button in navigation
  70. fadeIn = true # Turn on/off the fade-in effect
  71. fadeInIndex = false # Turn on/off the fade-in effect on the index page even if fade-in was otherwise turned off
  72. dateFormat = "Jan 2, 2006"
  73. email = "fred.damstra+hugo@gmail.com" # E-mail address for contact section
  74. # customCSS = ["foo.css"] # Include custom css files placed under assets/
  75. # customJS = ["foo.js"] # Include custom JavaScript files placed under assets/
  76. # plausible = true # Use Plausible analytics (requires an account at Plausible.io)
  77. # Configure the home page
  78. [params.home]
  79. introHeight = "fullheight" # Input either "medium" or "large" or "fullheight"
  80. showLatest = true # Show latest blog post summary
  81. showAllPosts = false # Set true to list all posts on home page, or set false to link to separate blog list page
  82. allPostsArchiveFormat = true # show all posts in an archive format
  83. numberOfProjectsToShow = 3 # Maximum number of projects to show on home page. Unset or comment out to show all projects
  84. localTime = true # Show your current local time in contact section
  85. timeZone = "America/Detroit" # Your timezone as in the TZ* column of this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  86. timeFormat = "en-US" # Language specific format to use
  87. [params.projects]
  88. useTwoColumns = false # Use a layout with two columns instead of three
  89. # Share buttons on blog post pages
  90. [params.share]
  91. twitter = true
  92. facebook = true
  93. pinterest = true
  94. # To enable giscus, the GitHub-discussions-based comment section,
  95. # input the repository for the discussions below. For more details, see
  96. # https://www.joelnitta.com/posts/2021-11-24_using-giscus/
  97. # and https://github.com/giscus/giscus
  98. [params.giscus]
  99. # repo = "github-user/github-repo" # Entering repo will enable giscus
  100. repo-id = "enter-repo-id"
  101. category = "Comments"
  102. category-id = "enter-category-id"
  103. mapping = "pathname"
  104. reactions-enabled = "1"
  105. emit-metadata = "0"
  106. theme = "light"
  107. lang = "en"
  108. # Social icons appear in introduction and contact section. Add as many more as you like.
  109. # Icon pack "fab" includes social network icons, see: https://fontawesome.com/icons?d=gallery&s=brands&m=free
  110. # Icon pack "fas" includes solid style icons, see: https://fontawesome.com/icons?d=gallery&s=solid&m=free
  111. [[params.social]]
  112. url = "https://twitter.com/fdamstra"
  113. icon = "twitter" # icon name without the 'fa-'
  114. icon_pack = "fab"
  115. [[params.social]]
  116. url = "https://facebook.com/fdamstra"
  117. icon = "facebook-f" # icon name without the 'fa-'
  118. icon_pack = "fab"
  119. [[params.social]]
  120. url = "https://www.linkedin.com/in/fdamstra/"
  121. icon = "linkedin-in" # icon name without the 'fa-'
  122. icon_pack = "fab"
  123. #[[params.social]]
  124. # url = "mailto:youremail@email.com" # For a direct email link, use "mailto:test@example.org".
  125. # icon = "paper-plane" # icon name without the 'fa-'
  126. # icon_pack = "fas"
  127. #[[params.social]]
  128. # url = "https://mastodon.social/"
  129. # icon = "mastodon" # icon name without the 'fa-'
  130. # icon_pack = "fab"
  131. # html_attributes = "rel=\"me\"" # Add rel attribute for Mastodon profile link verification
  132. # If you don't want to use the default menu, you can define one by yourself
  133. # [[menu.main]]
  134. # name = "Home"
  135. # url = "/"
  136. # weight = 0
  137. # [[menu.main]]
  138. # name = "Blog"
  139. # url = "/blog/"
  140. # weight = 1
  141. # We only use tag as a taxonomies
  142. # You can add more by yourself
  143. [taxonomies]
  144. tag = "tags"
  145. series = "series"
  146. [markup]
  147. defaultMarkdownHandler = "goldmark"
  148. [markup.goldmark]
  149. [markup.goldmark.renderer]
  150. unsafe = true
  151. [markup.highlight]
  152. codeFences = true
  153. guessSyntax = false
  154. hl_Lines = ""
  155. lineNoStart = 1
  156. lineNos = false
  157. lineNumbersInTable = true
  158. # noClasses = true
  159. # For styles, see https://xyproto.github.io/splash/docs/longer/all.html
  160. style = "solarized-dark"
  161. tabWidth = 4
  162. [languages]
  163. [languages.en]
  164. languageName = "English"
  165. languageCode = "en-us"
  166. contentDir = "content/en"
  167. weight = 0
  168. title = "Enjoy MonkeyBOX"
  169. [languages.en.params]
  170. description = "MonkeyBOX Entertainment Group" # Max 160 characters show in search results
  171. # footerText = "" # Text to override default footer text (markdown allowed)
  172. # [languages.es]
  173. # languageName = "Español"
  174. # languageCode = "es"
  175. # contentDir = "content/es"
  176. # weight = 1
  177. # title = "Introducción"
  178. # [languages.es.params]
  179. # description = "Descripcion del sitio web"
  180. # # footerText = ""
  181. #
  182. # [languages.de]
  183. # languageName = "Deutsch"
  184. # languageCode = "de"
  185. # contentDir = "content/de"
  186. # weight = 2
  187. # title = "Vorstellung"
  188. # [languages.de.params]
  189. # dateFormat = "2. January 2006"
  190. # description = "Beschreibung der Webseite"
  191. # # footerText = ""