-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
65 lines (62 loc) · 1.89 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
site_name: QML Core UI
site_description: guide to the core ui architecture for QML driven projects
site_author: Juergen Ryannel
copyright: 2019 Luxoft GmbH
repo_url: https://github.com/Luxoft/qml-coreui-guide
google_analytics:
theme:
name: "material"
palette:
primary: "blue"
accent: "teal"
font:
text: "Ubuntu"
code: "Ubuntu Mono"
logo:
icon: "bookmark"
language: "en"
extra:
search:
language: "en"
feature:
tabs: true
nav:
- "Home": index.md
- "Tutorial":
- "Overview": "guide/overview.md"
- "Install": "guide/install.md"
- "Getting Started": "guide/start.md"
- "CookBook": "guide/cookbook.md"
- "Examples": "guide/examples.md"
- Topics:
- "Foundations": "topics/foundations.md"
- "Building Blocks": "topics/blocks.md"
- "UI Layer": "topics/uilayer.md"
- "Filesystem layout": "topics/fslayout.md"
- "Runtime & Modules": "topics/runtime.md"
- "Kind of Components": "topics/kind.md"
- "Controls": "topics/controls.md"
- "Services": "topics/services.md"
- "Testing": "topics/testing.md"
- "Styles": "topics/styles.md"
- "Layouts": "topics/layouts.md"
- "Protoyping": "topics/prototyping.md"
- "Exposing Data to QML": "topics/data.md"
- "Design Work Flow": "topics/workflow.md"
- "(Live) Reloading": "topics/reload.md"
- "Refactoring": "topics/refactor.md"
- "Design Principles": "topics/principles.md"
- "UI Process Modes": "topics/process.md"
- Admin CLI:
- "Introduction": "admin/intro.md"
- "Quick Start": "admin/start.md"
- "Concepts": "admin/concepts.md"
- "Building": "admin/build.md"
- "Developing": "admin/dev.md"
- "Project Creation": "admin/projects.md"
- "Reference": "admin/reference.md"
markdown_extensions:
- admonition
- codehilite:
linenums: true
- pymdownx.magiclink