_config.yml 4.0 KB

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