_config.yml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. title: Awesome Django
  2. email: your-email@example.com
  3. description: >-
  4. A curated list of awesome things related to Django. Maintained by
  5. William Vincent and Jeff Triplett
  6. baseurl: "" # the subpath of your site, e.g. /blog
  7. url: "https://awesomedjango.org" # the base hostname & protocol for your site, e.g. http://example.com
  8. # Build settings
  9. markdown: kramdown
  10. remote_theme: pmarsceill/just-the-docs
  11. plugins:
  12. - jekyll-feed
  13. - jekyll-optional-front-matter
  14. include:
  15. - README.md
  16. exclude:
  17. - "*.md"
  18. - Gemfile*
  19. - justfile
  20. - LICENSE
  21. - Makefile
  22. - modd.conf
  23. - node_modules
  24. - package*.json
  25. - postcss.config.js
  26. - src
  27. - tailwind.config.js
  28. defaults:
  29. - scope:
  30. path: "" # an empty string here means all files in the project
  31. values:
  32. layout: "default"
  33. - scope:
  34. path: "README.md"
  35. values:
  36. permalink: "/"
  37. layout: "default"
  38. aux_links:
  39. "Awesome Django on GitHub":
  40. - "//github.com/wsvincent/awesome-django"
  41. # Makes Aux links open in a new tab. Default is false
  42. aux_links_new_tab: false
  43. color_scheme: django
  44. # color_scheme: light
  45. heading_anchors: true
  46. footer_content: "Please consider supporting Django by making a donation to the <a rel=\"sponsored\" href=\"https://www.djangoproject.com/fundraising/\">Django Software Foundation</a>, sponsoring via <a rel=\"sponsored\" href=\"https://github.com/sponsors/django\">GitHub Sponsors</a>, or buying <a rel=\"sponsored\" href=\"https://django.threadless.com/\">official merchandise</a>."
  47. # Footer last edited timestamp
  48. last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
  49. last_edit_time_format: "%b %e %Y at %I:%M %p" # uses ruby's time format: https://ruby-doc.org/stdlib-2.7.0/libdoc/time/rdoc/Time.html
  50. # Footer "Edit this page on GitHub" link text
  51. gh_edit_link: true # show or hide edit this page link
  52. gh_edit_link_text: "Edit this page on GitHub."
  53. gh_edit_repository: "https://github.com/wsvincent/awesome-django" # the github URL for your repo
  54. gh_edit_branch: "main" # the branch that your docs is served from
  55. # gh_edit_source: docs # the source that your files originate from
  56. gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
  57. search_enabled: false
  58. search:
  59. # Split pages into sections that can be searched individually
  60. # Supports 1 - 6, default: 2
  61. heading_level: 2
  62. # Maximum amount of previews per search result
  63. # Default: 3
  64. previews: 3
  65. # Maximum amount of words to display before a matched word in the preview
  66. # Default: 5
  67. preview_words_before: 5
  68. # Maximum amount of words to display after a matched word in the preview
  69. # Default: 10
  70. preview_words_after: 10
  71. # Set the search token separator
  72. # Default: /[\s\-/]+/
  73. # Example: enable support for hyphenated search words
  74. tokenizer_separator: /[\s/]+/
  75. # Display the relative url in search results
  76. # Supports true (default) or false
  77. rel_url: true
  78. # Enable or disable the search button that appears in the bottom right corner of every page
  79. # Supports true or false (default)
  80. button: false