_config.yml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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: ""
  7. url: "https://awesomedjango.org"
  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. - "_projects"
  17. - README.md
  18. exclude:
  19. - "*.md"
  20. - "*.py"
  21. - docker*
  22. - Gemfile*
  23. - justfile
  24. - LICENSE
  25. - Makefile
  26. - modd.conf
  27. - node_modules
  28. - package*.json
  29. - requirements.*
  30. - scripts
  31. - src
  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. collections: # process the _data folder
  44. projects:
  45. output: false
  46. permalink: /:collection/:name/
  47. aux_links:
  48. "Awesome Django on GitHub":
  49. - "//github.com/wsvincent/awesome-django"
  50. # Makes Aux links open in a new tab. Default is false
  51. aux_links_new_tab: false
  52. color_scheme: django
  53. # color_scheme: light
  54. heading_anchors: true
  55. footer_content: >-
  56. <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>
  57. <p>Please consider supporting Django by making a donation to the
  58. <a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
  59. sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
  60. or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.</p>
  61. <p>Awesome Django is not associated with the Django Software Foundation.<br>
  62. Django is a registered trademark of the Django Software Foundation.</p>
  63. # Footer last edited timestamp
  64. last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
  65. 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
  66. # Footer "Edit this page on GitHub" link text
  67. gh_edit_link: true # show or hide edit this page link
  68. gh_edit_link_text: "Edit this page on GitHub."
  69. gh_edit_repository: "https://github.com/wsvincent/awesome-django" # the github URL for your repo
  70. gh_edit_branch: "main" # the branch that your docs is served from
  71. # gh_edit_source: docs # the source that your files originate from
  72. gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
  73. search_enabled: false
  74. search:
  75. # Split pages into sections that can be searched individually
  76. # Supports 1 - 6, default: 2
  77. heading_level: 2
  78. # Maximum amount of previews per search result
  79. # Default: 3
  80. previews: 3
  81. # Maximum amount of words to display before a matched word in the preview
  82. # Default: 5
  83. preview_words_before: 5
  84. # Maximum amount of words to display after a matched word in the preview
  85. # Default: 10
  86. preview_words_after: 10
  87. # Set the search token separator
  88. # Default: /[\s\-/]+/
  89. # Example: enable support for hyphenated search words
  90. tokenizer_separator: /[\s/]+/
  91. # Display the relative url in search results
  92. # Supports true (default) or false
  93. rel_url: true
  94. # Enable or disable the search button that appears in the bottom right corner of every page
  95. # Supports true or false (default)
  96. button: false
  97. nav_external_links:
  98. - title: Third-Party Packages
  99. url: "#third-party-packages"
  100. hide_icon: true
  101. - title: Python Packages
  102. url: "#python-packages"
  103. hide_icon: true
  104. - title: Resources
  105. url: "#resources"
  106. hide_icon: true
  107. - title: Hosting
  108. url: "#hosting"
  109. hide_icon: true
  110. - title: Projects
  111. url: "#projects"
  112. hide_icon: true
  113. - title: Django REST Framework
  114. url: "#django-rest-framework"
  115. hide_icon: true
  116. - title: Wagtail
  117. url: "#wagtail"
  118. hide_icon: true