_config.yml 4.1 KB

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