-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
47 lines (42 loc) · 1.33 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
site_name: django-readers
site_description: A lightweight function-oriented toolkit for better organisation of business logic and efficient selection and projection of data in Django projects.
theme:
name: 'material'
icon:
logo: 'material/book-open-variant'
repo: 'fontawesome/brands/github'
favicon: img/favicon.ico
palette:
primary: pink
accent: pink
copyright: '<a href="https://www.dabapps.com">A DabApps project</a>'
markdown_extensions:
- admonition
- pymdownx.highlight:
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets:
check_paths: true
- toc:
permalink: true
- attr_list
repo_name: dabapps/django-readers
repo_url: https://github.com/dabapps/django-readers/
edit_uri: ""
nav:
- Introduction: 'index.md'
- Tutorial: 'tutorial.md'
- Cookbook: 'cookbook.md'
- Explanation: 'explanation.md'
- Reference:
- Queryset functions: 'reference/queryset-functions.md'
- Producers: 'reference/producers.md'
- Projectors: 'reference/projectors.md'
- Pairs: 'reference/pairs.md'
- Specs: 'reference/specs.md'
- REST framework: 'reference/rest-framework.md'
- Community:
- Third Party Packages: 'community/third-party-packages.md'
- Changelog: 'community/changelog.md'
- License: 'community/license.md'