config.yaml 2.0 KB

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