config.yaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. baseURL: https://example.com
  2. languageCode: en-us
  3. defaultContentLanguage: en
  4. title: Cupper
  5. theme: cupper-hugo-theme
  6. googleAnalytics: UA-123456789-1
  7. disqusShortname: yourdiscussshortname
  8. enableGitInfo: true
  9. taxonomies:
  10. tag: tags
  11. permalinks:
  12. post: /:filename/
  13. imaging:
  14. quality: 99
  15. params:
  16. description: An accessibility-friendly Hugo theme, ported from the [original Cupper](https://github.com/ThePacielloGroup/cupper) project.
  17. homeMetaContent: An accessibility-friendly Hugo theme, ported from the original Cupper project.
  18. footer: Made with [Hugo](https://gohugo.io/). Themed by [Cupper](https://github.com/zwbetz-gh/cupper-hugo-theme). Deployed to [Netlify](https://www.netlify.com/).
  19. # For more date formats see https://gohugo.io/functions/format/
  20. dateFormat: Jan 2, 2006
  21. codePenUser: someUser
  22. katex: true
  23. darkThemeAsDefault: false
  24. hideHeaderLinks: false
  25. search: true
  26. # A list of custom css files can be provided, which must be placed inside
  27. # 'static/'.
  28. # This is useful to override just specific css classes, instead of copying
  29. # the entire theme's css file to your own site.
  30. # Usage:
  31. # customCss:
  32. # - css/foo.css # relative path starting from static/
  33. #- css/bar.css
  34. menu:
  35. nav:
  36. - name: Home
  37. url: /
  38. weight: 1
  39. - name: Blog
  40. url: /post/
  41. weight: 2
  42. - name: Tags
  43. url: /tags/
  44. weight: 3
  45. - name: About
  46. url: /about/
  47. weight: 4
  48. - name: RSS
  49. url: /index.xml
  50. weight: 5
  51. markup:
  52. defaultMarkdownHandler: goldmark
  53. goldmark:
  54. extensions:
  55. definitionList: true
  56. footnote: true
  57. linkify: true
  58. strikethrough: true
  59. table: true
  60. taskList: true
  61. typographer: true
  62. parser:
  63. attribute: true
  64. autoHeadingID: true
  65. renderer:
  66. hardWraps: false
  67. unsafe: true
  68. xHTML: false
  69. highlight:
  70. codeFences: false
  71. hl_Lines: ""
  72. lineNoStart: 1
  73. lineNos: false
  74. lineNumbersInTable: true
  75. noClasses: true
  76. style: monokai
  77. tabWidth: 4
  78. tableOfContents:
  79. endLevel: 6
  80. startLevel: 2