config.yaml 1.9 KB

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