-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
82 lines (82 loc) · 3.88 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
site_name: Invention Framework Docs
site_author: OSN Inc.
site_url: http://localhost:8000/
#site_description: Invention Framework is an excellent PHP framework. It follows the Model-View-Controller (MVC) pattern. It can be used for building both CLI and Web applications.
repo_url: https://github.com/onesoft-sudo/invention-docs
repo_name: GitHub
edit_uri: edit/main/docs
copyright: Copyright © OSN Inc. 2022
nav:
- 'Getting Started': index.md
- 'Autogenerated docs': '/generated/'
- 'Basics':
- 'File & Folder Structure': 'basics/file_and_folder_structure.md'
- 'Basic Configuration': basics/basic_configuration.md
- 'Basic MVC Concepts': basics/mvc_basic_concepts.md
- 'Creating a new route': basics/creating_a_new_route.md
- 'More about routing': basics/more_about_routing.md
- 'Views':
- 'Intro to the Views': views/intro_to_the_views.md
- 'Meet PowerParser': views/meet_powerparser.md
- 'Layouts': views/layouts.md
- 'View Components': views/view_components.md
- 'PowerParser Directives': views/powerparser_directives.md
- 'PowerParser Directive: :args():': views/powerparser_directive_args.md
- 'PowerParser Directive: :csrf:': views/powerparser_directive_csrf.md
- 'PowerParser Directive: :component():': views/powerparser_directive_component.md
- 'PowerParser Directive: :dowhile():': views/powerparser_directive_dowhile.md
- 'PowerParser Directive: :extends():': views/powerparser_directive_extends.md
- 'PowerParser Directive: :for():': views/powerparser_directive_for.md
- 'PowerParser Directive: :foreach():': views/powerparser_directive_foreach.md
- 'PowerParser Directive: :if():': views/powerparser_directive_if.md
- 'PowerParser Directive: :method():': views/powerparser_directive_method.md
- 'PowerParser Directive: :php:': views/powerparser_directive_php.md
- 'PowerParser Directive: :section():': views/powerparser_directive_section.md
- 'PowerParser Directive: :title():': views/powerparser_directive_title.md
- 'PowerParser Directive: :while():': views/powerparser_directive_while.md
- 'PowerParser Directive: :yield():': views/powerparser_directive_yield.md
- "Core Features and Usage":
- "Application & Entry Points": "core/application_and_entry_points.md"
- "Controllers":
- "Creating and Understanding a Basic Controller": "controllers/creating_and_understanding_a_basic_controller.md"
- "Action Methods and Their Work": "controllers/action_methods_and_their_work.md"
- "Rendering a View from a Controller": "controllers/rendering_a_view_from_a_controller.md"
- "Return Values of a Controller Action": "controllers/return_values_of_a_controller_action.md"
- "Returning Custom Response": "controllers/returning_custom_response.md"
- "Models":
- "Intro to the Models": "models/intro_to_the_models.md"
theme:
name: material
features:
- toc.integrate
- content.code.annotate
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
palette:
- scheme: default
primary: #007bff
accent: #f14a60
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- scheme: slate
primary: #ddd
accent: #007bff
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: assets/favicon.png
markdown_extensions:
- toc:
permalink: "#"
extra_css:
- assets/css/style.css
- "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/styles/github.min.css"
extra_javascript:
- "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/highlight.min.js"