config.yaml 2.0 KB

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