-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
mkdocs.yaml
67 lines (59 loc) · 1.69 KB
/
mkdocs.yaml
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
# Project info
site_name: Box Project
site_description: "Box: building and managing PHARs"
site_url: https://box-project.github.io/box
site_dir: dist/website
# Repository
repo_name: 'box-project/box'
repo_url: 'https://github.com/box-project/box'
edit_uri: ''
# Copyright
copyright: 'Box is licensed under <a href="https://github.com/box-project/box/blob/master/LICENSE">MIT license</a>'
# Document directory
docs_dir: doc
# Social Media
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/box-project
# Configuration
theme:
name: material
logo: img/favicon.png
favicon: img/favicon.png
icon:
repo: fontawesome/brands/github
palette:
scheme: default
primary: brown
accent: amber
features:
- content.tabs.link
- navigation.tabs
- navigation.top
custom_dir: doc/overrides
nav:
- Home: index.md
- Documentation:
- Installation: installation.md
- Usage: usage.md
- Configuration: configuration.md
- 'Requirements checker': requirement-checker.md
- 'Optimize your PHAR': optimizations.md
- 'PHAR code isolation': code-isolation.md
- 'Docker support': docker.md
- 'Symfony support': symfony.md
- 'Reproducible builds': reproducible-builds.md
- 'PHAR signing best practices': phar-signing.md
- 'FAQ': faq.md
markdown_extensions:
- admonition
- attr_list
- footnotes
- pymdownx.highlight
- pymdownx.superfences
- toc:
permalink: true
extra_css:
- assets/announce.css
- assets/docs.css