config.yaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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: 'My Online Courses' # Website name
  6. baseURL: 'https://example.com/' # Website URL
  7. ############################
  8. ## PAGE OPTIONS
  9. ############################
  10. cascade:
  11. # Docs folder options
  12. - _target:
  13. path: /course/**
  14. editable: true
  15. show_breadcrumb: true
  16. # Blog post folder options
  17. - _target:
  18. path: /post/**
  19. show_related: true
  20. ############################
  21. ## LANGUAGE
  22. ############################
  23. defaultContentLanguage: en
  24. hasCJKLanguage: false
  25. defaultContentLanguageInSubdir: false
  26. removePathAccents: true
  27. ############################
  28. ## MODULES
  29. ############################
  30. module:
  31. imports:
  32. - path: github.com/wowchemy/wowchemy-hugo-modules/wowchemy-cms/v5
  33. - path: github.com/wowchemy/wowchemy-hugo-modules/wowchemy/v5
  34. ############################
  35. ## ADVANCED
  36. ############################
  37. enableGitInfo: false
  38. summaryLength: 30
  39. paginate: 10
  40. enableEmoji: true
  41. enableRobotsTXT: true
  42. footnotereturnlinkcontents: <sup>^</sup>
  43. ignoreFiles: [\.ipynb$, .ipynb_checkpoints$, \.Rmd$, \.Rmarkdown$, _cache$]
  44. permalinks:
  45. authors: '/author/:slug/'
  46. tags: '/tag/:slug/'
  47. categories: '/category/:slug/'
  48. disableAliases: true
  49. outputs:
  50. home: [HTML, RSS, JSON, WebAppManifest, headers, redirects]
  51. section: [HTML, RSS]
  52. imaging:
  53. resampleFilter: lanczos
  54. quality: 75
  55. anchor: smart
  56. timeout: 600000
  57. taxonomies:
  58. tag: tags
  59. category: categories
  60. author: authors
  61. markup:
  62. _merge: deep
  63. related:
  64. threshold: 80
  65. includeNewer: true
  66. toLower: true
  67. indices:
  68. - name: tags
  69. weight: 100
  70. - name: categories
  71. weight: 70
  72. security:
  73. _merge: deep
  74. sitemap:
  75. _merge: deep