_config.yml 4.2 KB

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