config.yaml 1.8 KB

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