config.toml 8.3 KB

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