config.yaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. # A list of custom css files can be provided, which must be placed inside
  24. # 'static/'.
  25. # This is useful to override just specific css classes, instead of copying
  26. # the entire theme's css file to your own site.
  27. # Usage:
  28. # customCss:
  29. # - css/foo.css # relative path starting from static/
  30. #- css/bar.css
  31. menu:
  32. nav:
  33. - name: Home
  34. url: /
  35. weight: 1
  36. - name: Blog
  37. url: /post/
  38. weight: 2
  39. - name: Tags
  40. url: /tags/
  41. weight: 3
  42. - name: About
  43. url: /about/
  44. weight: 4
  45. - name: RSS
  46. url: /index.xml
  47. weight: 5
  48. markup:
  49. defaultMarkdownHandler: goldmark
  50. goldmark:
  51. extensions:
  52. definitionList: true
  53. footnote: true
  54. linkify: true
  55. strikethrough: true
  56. table: true
  57. taskList: true
  58. typographer: true
  59. parser:
  60. attribute: true
  61. autoHeadingID: true
  62. renderer:
  63. hardWraps: false
  64. unsafe: true
  65. xHTML: false
  66. highlight:
  67. codeFences: false
  68. hl_Lines: ""
  69. lineNoStart: 1
  70. lineNos: false
  71. lineNumbersInTable: true
  72. noClasses: true
  73. style: monokai
  74. tabWidth: 4
  75. tableOfContents:
  76. endLevel: 6
  77. startLevel: 2