-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
138 lines (128 loc) · 3.69 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# Paths
docs_dir: docs
site_dir: site
# Project information
site_name: Symlex
site_description: A lean framework stack for agile Web development based on Symfony and Vuetify
site_author: Symlex.org
site_url: https://docs.symlex.org/en/latest
# Repository
repo_name: symlex/symlex
repo_url: https://github.com/symlex/symlex
edit_uri: ""
# Copyright
copyright: 'Made with ❤ in Berlin'
# Configuration
theme:
name: null
custom_dir: material
# 404 page
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
feature:
tabs: true
palette:
primary: blue grey
accent: cyan
font:
text: Roboto
code: Roboto Mono
favicon: img/favicon.ico
logo: img/favicon.ico
# Customization
extra:
social:
- type: commenting
link: https://gitter.im/symlex/community
- type: twitter
link: https://twitter.com/lastzero
- type: linkedin
link: https://www.linkedin.com/in/lastzero/
- type: globe
link: https://symlex.org/
- type: github-alt
link: https://github.com/symlex
# Extensions
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: pymdownx.emoji.emojione
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Page tree
nav:
- Introduction: index.md
- Performance: performance.md
- History: history.md
- Tradeoffs: tradeoffs.md
- Team: team.md
- Contact: contact.md
- Contribute: contribute.md
- Credits: credits.md
- License: license.md
- Mac OS X: osx.md
- Framework:
- Getting Started: framework.md
- Configuration: framework/config.md
- Bootstrapping: framework/kernel.md
- Routing & Twig: framework/routing.md
- Commands: framework/cli.md
- Web Frontend: framework/frontend.md
- Web Controllers: framework/web.md
- REST Controllers: framework/rest.md
- Input Validation: framework/forms.md
- Persistence Layer: framework/models.md
- Error Handling: framework/errors.md
- Symfony Bundles: framework/bundles.md
- Unit Tests: framework/unit-tests.md
- Acceptance Tests: framework/acceptance-tests.md
- Core:
- Introduction: core.md
- Kernel: core/kernel.md
- Routers: core/routers.md
- DIMicroKernel:
- Introduction: di-microkernel.md
- Configuration: di-microkernel/config.md
- Contribute: di-microkernel/contribute.md
- InputValidation:
- Introduction: input-validation.md
- Create Forms: input-validation/definition.md
- Field Properties: input-validation/properties.md
- REST Example: input-validation/example.md
- API: input-validation/api.md
- Tradeoffs: input-validation/tradeoffs.md
- Contribute: input-validation/contribute.md
- Doctrine ActiveRecord:
- Introduction: doctrine-active-record.md
- Examples: doctrine-active-record/examples.md
- Business Models: doctrine-active-record/models.md
- Data Access Objects: doctrine-active-record/daos.md
- Search Queries: doctrine-active-record/search.md
- Unit Tests: doctrine-active-record/tests.md
- Tradeoffs: doctrine-active-record/tradeoffs.md
- Contribute: doctrine-active-record/contribute.md