config.yaml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # Configuration of Hugo
  2. # Guide: https://wowchemy.com/docs/getting-started/
  3. # Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings
  4. # This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/
  5. title: Hugo Portfolio Theme # Website name
  6. baseURL: 'https://example.com/' # Website URL
  7. ############################
  8. ## PAGE OPTIONS
  9. ############################
  10. cascade:
  11. # Blog post options
  12. - _target:
  13. path: /post/**
  14. editable: true
  15. reading_time: true
  16. commentable: true
  17. show_related: true
  18. show_breadcrumb: true
  19. ############################
  20. ## LANGUAGE
  21. ############################
  22. defaultContentLanguage: en
  23. hasCJKLanguage: false
  24. defaultContentLanguageInSubdir: false
  25. removePathAccents: true
  26. ############################
  27. ## MODULES
  28. ############################
  29. module:
  30. imports:
  31. - path: github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5
  32. - path: github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5
  33. ############################
  34. ## ADVANCED
  35. ############################
  36. enableGitInfo: false
  37. summaryLength: 30
  38. paginate: 10
  39. enableEmoji: true
  40. enableRobotsTXT: true
  41. footnotereturnlinkcontents: <sup>^</sup>
  42. ignoreFiles: [\.ipynb$, .ipynb_checkpoints$, \.Rmd$, \.Rmarkdown$, _cache$]
  43. permalinks:
  44. authors: '/author/:slug/'
  45. tags: '/tag/:slug/'
  46. categories: '/category/:slug/'
  47. disableAliases: true
  48. outputs:
  49. home: [HTML, RSS, JSON, WebAppManifest, headers, redirects]
  50. section: [HTML, RSS]
  51. imaging:
  52. resampleFilter: lanczos
  53. quality: 75
  54. anchor: smart
  55. timeout: 600000
  56. taxonomies:
  57. tag: tags
  58. category: categories
  59. author: authors
  60. markup:
  61. _merge: deep
  62. related:
  63. threshold: 80
  64. includeNewer: true
  65. toLower: true
  66. indices:
  67. - name: tags
  68. weight: 100
  69. - name: categories
  70. weight: 70
  71. security:
  72. _merge: deep
  73. sitemap:
  74. _merge: deep