_config.yml 774 B

12345678910111213141516171819202122232425262728293031323334
  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://awesome-django.org" # the base hostname & protocol for your site, e.g. http://example.com
  8. # Build settings
  9. markdown: kramdown
  10. plugins:
  11. - jekyll-feed
  12. - jekyll-optional-front-matter
  13. include:
  14. - README.md
  15. exclude:
  16. - "*.md"
  17. - Gemfile*
  18. - LICENSE
  19. - Makefile
  20. - postcss.config.js
  21. - tailwind.config.js
  22. - src
  23. defaults:
  24. - scope:
  25. path: "" # an empty string here means all files in the project
  26. values:
  27. layout: "default"
  28. - scope:
  29. path: "README.md"
  30. values:
  31. permalink: "/"
  32. layout: "default"