-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
66 lines (66 loc) · 2.07 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
site_name: OffbeatWP
site_dir: 'public'
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.highlight:
extend_pygments_lang:
- name: php
lang: php
options:
startinline: true
theme:
name: material
features:
- content.code.annotate
# - content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
# - navigation.indexes
# - navigation.instant
# - navigation.prune
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
nav:
- Home: index.md
- Introduction:
- What is OffbeatWP: 'introduction/what-is-offbeatwp.md'
- Gettings started:
- Installation: 'introduction/getting-started/installation.md'
- Configuration: 'introduction/getting-started/configuration.md'
- Directory structure: 'introduction/getting-started/directory-structure.md'
- Deploying: 'introduction/getting-started/deploying.md'
- Architecture Concepts:
- Container: 'introduction/concepts/container.md'
- Services: 'introduction/concepts/services.md'
- Components: 'introduction/concepts/components.md'
- How to:
- The Basics:
- Post Types: 'how-to/basics/post_types.md'
- Taxonomies: 'how-to/basics/taxonomies.md'
- Routing: 'how-to/basics/routing.md'
- Controllers: 'how-to/basics/controllers.md'
- Post models: 'how-to/basics/post_models.md'
- Term models: 'how-to/basics/term_models.md'
- Views: 'how-to/basics/views.md'
- Modules: 'how-to/basics/modules.md'
- Repositories: 'how-to/basics/repositories.md'
- Components: 'how-to/basics/components.md'
- Forms: 'how-to/basics/forms.md'
- Relationships: 'how-to/basics/relationships.md'
- Globals: 'how-to/basics/globals.md'
- Assets:
- Compile: 'how-to/assets/compile.md'