_config.yml 4.0 KB

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