-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
82 lines (66 loc) · 1.93 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
# Project information
site_name: 'PHP-FPM 7.0'
site_description: 'PHP-FPM 7.0 server running inside Docker container using Alpine Linux with S6 Overlay init system.'
site_author: 'Abner G Jacobsen'
site_url: 'https://daspanel.github.io/php-fpm-7.0'
# Repository
repo_name: 'GitHub'
repo_url: 'https://github.com/daspanel/php-fpm-7.0'
# Copyright
copyright: 'Copyright (c) 2016 Abner G Jacobsen'
# Documentation and theme
docs_dir: 'docs'
site_dir: 'site_mkdocs'
theme: 'material'
#theme_dir: docs/custom_theme
#extra_css: [ custom_theme/extra.css ]
# Google Analytics
#google_analytics:
# - 'UA-XXXXXXXX-X'
# - 'auto'
# Options
extra:
version: '0.1.0'
logo: 'images/logo.png'
palette:
primary: 'blue'
accent: 'light blue'
font:
text: 'Roboto'
code: 'Roboto Mono'
# i18n:
# prev: 'Previous'
# next: 'Next'
author:
github: 'daspanel'
# twitter: 'my-twitter-handle'
# From https://github.com/juttle/juttle/blob/master/mkdocs.yml http://juttle.github.io/juttle/
# http://squidfunk.github.io/mkdocs-material/getting-started/#full-example
# Extensions
markdown_extensions:
# - codehilite(css_class=code)
- admonition
# - toc:
# permalink: '#'
# use_directory_urls: true
# Pages with ___Title are hidden from left sidebar menu.
pages:
# Pages with ___Title are hidden from left sidebar menu.
#- Introduction:
# - 'About': 'index.md'
# - '____ Docs README': 'README.md'
# - '____ Doc Template': 'doc_templates/template.md'
# - '____ Juttle Doc Template': 'doc_templates/juttle_TEMPLATE.md'
# - '____ Sample Datasets': 'examples/datasets/README.md'
- Home: 'index.md'
- User Guide:
- 'Basic': 'help/index.md'
- 'Usingh docker-compose': 'help/compose.md'
- 'Advanced': 'help/advanced.md'
- 'Development': 'help/development.md'
- 'How To': 'howto/index.md'
- Issues: 'issues.md'
- Contributing: 'contributing.md'
- About:
- 'Authors': 'authors.md'
- 'Changelog': 'changelog.md'