_config.yml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. - jekyll-seo-tag
  15. include:
  16. - README.md
  17. exclude:
  18. - "*.md"
  19. - Gemfile*
  20. - justfile
  21. - LICENSE
  22. - Makefile
  23. - modd.conf
  24. - node_modules
  25. - package*.json
  26. - postcss.config.js
  27. - src
  28. - tailwind.config.js
  29. defaults:
  30. - scope:
  31. path: "" # an empty string here means all files in the project
  32. values:
  33. layout: "default"
  34. - scope:
  35. path: "README.md"
  36. values:
  37. permalink: "/"
  38. layout: "default"
  39. aux_links:
  40. "Awesome Django on GitHub":
  41. - "//github.com/wsvincent/awesome-django"
  42. # Makes Aux links open in a new tab. Default is false
  43. aux_links_new_tab: false
  44. color_scheme: django
  45. # color_scheme: light
  46. heading_anchors: true
  47. footer_content: >-
  48. Please consider supporting Django by making a donation to the
  49. <a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
  50. sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
  51. or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.
  52. Awesome Django is not associated with the Django Software Foundation.
  53. Django is a registered trademark of the Django Software Foundation.
  54. # Footer last edited timestamp
  55. last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
  56. 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
  57. # Footer "Edit this page on GitHub" link text
  58. gh_edit_link: true # show or hide edit this page link
  59. gh_edit_link_text: "Edit this page on GitHub."
  60. gh_edit_repository: "https://github.com/wsvincent/awesome-django" # the github URL for your repo
  61. gh_edit_branch: "main" # the branch that your docs is served from
  62. # gh_edit_source: docs # the source that your files originate from
  63. gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
  64. search_enabled: false
  65. search:
  66. # Split pages into sections that can be searched individually
  67. # Supports 1 - 6, default: 2
  68. heading_level: 2
  69. # Maximum amount of previews per search result
  70. # Default: 3
  71. previews: 3
  72. # Maximum amount of words to display before a matched word in the preview
  73. # Default: 5
  74. preview_words_before: 5
  75. # Maximum amount of words to display after a matched word in the preview
  76. # Default: 10
  77. preview_words_after: 10
  78. # Set the search token separator
  79. # Default: /[\s\-/]+/
  80. # Example: enable support for hyphenated search words
  81. tokenizer_separator: /[\s/]+/
  82. # Display the relative url in search results
  83. # Supports true (default) or false
  84. rel_url: true
  85. # Enable or disable the search button that appears in the bottom right corner of every page
  86. # Supports true or false (default)
  87. button: false