zensical.toml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. [project]
  2. site_name = "Awesome Django"
  3. site_url = "https://awesomedjango.org/"
  4. site_description = "A curated list of awesome things related to Django. Maintained by William Vincent and Jeff Triplett"
  5. repo_url = "https://github.com/wsvincent/awesome-django"
  6. repo_name = "wsvincent/awesome-django"
  7. edit_uri = "edit/main/README.md"
  8. # README.md is the source of truth. docs/README.md is a symlink to it, so the
  9. # GitHub README and the website never drift apart.
  10. nav = [
  11. { "Awesome Django" = "README.md" },
  12. ]
  13. extra_css = ["stylesheets/django.css"]
  14. extra_javascript = ["javascripts/anchor-compat.js"]
  15. [project.theme]
  16. custom_dir = "overrides"
  17. language = "en"
  18. features = [
  19. "announce.dismiss",
  20. "content.action.edit",
  21. "content.code.copy",
  22. "navigation.instant",
  23. "navigation.instant.prefetch",
  24. "navigation.top",
  25. "navigation.tracking",
  26. "search.highlight",
  27. "search.suggest",
  28. "toc.follow",
  29. # The site is one long page. Put the table of contents in the left sidebar
  30. # so the category list is always visible, like the old just-the-docs nav.
  31. "toc.integrate",
  32. ]
  33. # primary and accent are "custom" so the theme does not emit its default
  34. # indigo rule. The real colors live in docs/stylesheets/django.css.
  35. [[project.theme.palette]]
  36. media = "(prefers-color-scheme: light)"
  37. scheme = "default"
  38. primary = "custom"
  39. accent = "custom"
  40. toggle.icon = "lucide/sun"
  41. toggle.name = "Switch to dark mode"
  42. [[project.theme.palette]]
  43. media = "(prefers-color-scheme: dark)"
  44. scheme = "slate"
  45. primary = "custom"
  46. accent = "custom"
  47. toggle.icon = "lucide/moon"
  48. toggle.name = "Switch to light mode"
  49. [[project.extra.social]]
  50. icon = "fontawesome/brands/github"
  51. link = "https://github.com/wsvincent/awesome-django"
  52. [project.markdown_extensions]
  53. attr_list = {}
  54. md_in_html = {}
  55. admonition = {}
  56. def_list = {}
  57. tables = {}
  58. # permalink restores the click-to-link heading anchors the Jekyll theme had
  59. # via heading_anchors: true.
  60. toc = { permalink = true }
  61. pymdownx.details = {}
  62. pymdownx.highlight = { anchor_linenums = true, pygments_lang_class = true }
  63. pymdownx.inlinehilite = {}
  64. pymdownx.magiclink = {}
  65. pymdownx.superfences = {}
  66. pymdownx.tasklist = { custom_checkbox = true }