_config.yml 836 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. - justfile
  19. - LICENSE
  20. - Makefile
  21. - modd.conf
  22. - node_modules
  23. - package*.json
  24. - postcss.config.js
  25. - src
  26. - tailwind.config.js
  27. defaults:
  28. - scope:
  29. path: "" # an empty string here means all files in the project
  30. values:
  31. layout: "default"
  32. - scope:
  33. path: "README.md"
  34. values:
  35. permalink: "/"
  36. layout: "default"