_config.yml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. <div align="center">
  62. <webring-css site="https://awesomedjango.org"></webring-css>
  63. <script src="https://djangowebring.com/static/webring.js"></script>
  64. </div>
  65. <p>Please consider supporting Django by making a donation to the
  66. <a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
  67. sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
  68. or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.</p>
  69. <p>Awesome Django is not associated with the Django Software Foundation.<br>
  70. Django is a registered trademark of the Django Software Foundation.</p>
  71. # Footer last edited timestamp
  72. last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
  73. 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
  74. # Footer "Edit this page on GitHub" link text
  75. gh_edit_link: true # show or hide edit this page link
  76. gh_edit_link_text: "Edit this page on GitHub."
  77. gh_edit_repository: "https://github.com/wsvincent/awesome-django" # the github URL for your repo
  78. gh_edit_branch: "main" # the branch that your docs is served from
  79. # gh_edit_source: docs # the source that your files originate from
  80. gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
  81. search_enabled: false
  82. search:
  83. # Split pages into sections that can be searched individually
  84. # Supports 1 - 6, default: 2
  85. heading_level: 2
  86. # Maximum amount of previews per search result
  87. # Default: 3
  88. previews: 3
  89. # Maximum amount of words to display before a matched word in the preview
  90. # Default: 5
  91. preview_words_before: 5
  92. # Maximum amount of words to display after a matched word in the preview
  93. # Default: 10
  94. preview_words_after: 10
  95. # Set the search token separator
  96. # Default: /[\s\-/]+/
  97. # Example: enable support for hyphenated search words
  98. tokenizer_separator: /[\s/]+/
  99. # Display the relative url in search results
  100. # Supports true (default) or false
  101. rel_url: true
  102. # Enable or disable the search button that appears in the bottom right corner of every page
  103. # Supports true or false (default)
  104. button: false
  105. nav_external_links:
  106. - title: Third-Party Packages
  107. url: "#third-party-packages"
  108. hide_icon: true
  109. - title: Python Packages
  110. url: "#python-packages"
  111. hide_icon: true
  112. - title: Resources
  113. url: "#resources"
  114. hide_icon: true
  115. - title: Hosting
  116. url: "#hosting"
  117. hide_icon: true
  118. - title: Projects
  119. url: "#projects"
  120. hide_icon: true
  121. - title: Django REST Framework
  122. url: "#django-rest-framework"
  123. hide_icon: true
  124. - title: Wagtail
  125. url: "#wagtail"
  126. hide_icon: true