_config.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. - vendor
  30. defaults:
  31. - scope:
  32. path: "" # an empty string here means all files in the project
  33. values:
  34. layout: "default"
  35. - scope:
  36. path: "README.md"
  37. values:
  38. permalink: "/"
  39. layout: "default"
  40. aux_links:
  41. "Awesome Django on GitHub":
  42. - "//github.com/wsvincent/awesome-django"
  43. # Makes Aux links open in a new tab. Default is false
  44. aux_links_new_tab: false
  45. color_scheme: django
  46. # color_scheme: light
  47. heading_anchors: true
  48. footer_content: >-
  49. Please consider supporting Django by making a donation to the
  50. <a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
  51. sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
  52. or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.
  53. Awesome Django is not associated with the Django Software Foundation.
  54. Django is a registered trademark of the Django Software Foundation.
  55. # Footer last edited timestamp
  56. last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
  57. 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
  58. # Footer "Edit this page on GitHub" link text
  59. gh_edit_link: true # show or hide edit this page link
  60. gh_edit_link_text: "Edit this page on GitHub."
  61. gh_edit_repository: "https://github.com/wsvincent/awesome-django" # the github URL for your repo
  62. gh_edit_branch: "main" # the branch that your docs is served from
  63. # gh_edit_source: docs # the source that your files originate from
  64. gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
  65. search_enabled: false
  66. search:
  67. # Split pages into sections that can be searched individually
  68. # Supports 1 - 6, default: 2
  69. heading_level: 2
  70. # Maximum amount of previews per search result
  71. # Default: 3
  72. previews: 3
  73. # Maximum amount of words to display before a matched word in the preview
  74. # Default: 5
  75. preview_words_before: 5
  76. # Maximum amount of words to display after a matched word in the preview
  77. # Default: 10
  78. preview_words_after: 10
  79. # Set the search token separator
  80. # Default: /[\s\-/]+/
  81. # Example: enable support for hyphenated search words
  82. tokenizer_separator: /[\s/]+/
  83. # Display the relative url in search results
  84. # Supports true (default) or false
  85. rel_url: true
  86. # Enable or disable the search button that appears in the bottom right corner of every page
  87. # Supports true or false (default)
  88. button: false
  89. nav_external_links:
  90. - title: Third-Party Packages
  91. url: "#third-party-packages"
  92. hide_icon: true
  93. - title: Python Packages
  94. url: "#python-packages"
  95. hide_icon: true
  96. - title: Resources
  97. url: "#resources"
  98. hide_icon: true
  99. - title: Hosting
  100. url: "#hosting"
  101. hide_icon: true
  102. - title: Projects
  103. url: "#projects"
  104. hide_icon: true
  105. - title: Django REST Framework
  106. url: "#django-rest-framework"
  107. hide_icon: true
  108. - title: Wagtail
  109. url: "#wagtail"
  110. hide_icon: true