config.yaml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. menu:
  24. nav:
  25. - name: Home
  26. url: /
  27. weight: 1
  28. - name: Blog
  29. url: /post/
  30. weight: 2
  31. - name: Tags
  32. url: /tags/
  33. weight: 3
  34. - name: About
  35. url: /about/
  36. weight: 4
  37. - name: RSS
  38. url: /index.xml
  39. weight: 5
  40. markup:
  41. defaultMarkdownHandler: goldmark
  42. goldmark:
  43. extensions:
  44. definitionList: true
  45. footnote: true
  46. linkify: true
  47. strikethrough: true
  48. table: true
  49. taskList: true
  50. typographer: true
  51. parser:
  52. attribute: true
  53. autoHeadingID: true
  54. renderer:
  55. hardWraps: false
  56. unsafe: true
  57. xHTML: false
  58. highlight:
  59. codeFences: false
  60. hl_Lines: ""
  61. lineNoStart: 1
  62. lineNos: false
  63. lineNumbersInTable: true
  64. noClasses: true
  65. style: monokai
  66. tabWidth: 4
  67. tableOfContents:
  68. endLevel: 6
  69. startLevel: 2