Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sundowndev
GitHub Repository: sundowndev/phoneinfoga
Path: blob/master/mkdocs.yml
988 views
1
site_name: PhoneInfoga
2
site_url: https://sundowndev.github.io/phoneinfoga
3
repo_name: 'sundowndev/phoneinfoga'
4
repo_url: 'https://github.com/sundowndev/phoneinfoga'
5
site_description: 'Advanced information gathering & OSINT tool for phone numbers.'
6
site_author: 'Sundowndev'
7
copyright: 'PhoneInfoga was developed by sundowndev and is licensed under GPL-3.0.'
8
nav:
9
- 'Home': index.md
10
- 'Getting Started':
11
- 'Installation': getting-started/install.md
12
- 'Usage': getting-started/usage.md
13
- 'Scanners': getting-started/scanners.md
14
- 'Go module usage': getting-started/go-module-usage.md
15
- 'Resources':
16
- 'Formatting phone numbers': resources/formatting.md
17
- 'Additional resources': resources/additional-resources.md
18
- 'Contribute': contribute.md
19
theme:
20
name: material
21
logo: './images/logo_white.svg'
22
favicon: './images/logo.svg'
23
palette:
24
- scheme: default
25
primary: blue grey
26
accent: indigo
27
toggle:
28
icon: material/brightness-7
29
name: Switch to dark mode
30
- scheme: slate
31
primary: blue grey
32
accent: indigo
33
toggle:
34
icon: material/brightness-4
35
name: Switch to light mode
36
features:
37
- content.tabs.link
38
- navigation.instant
39
- navigation.sections
40
- navigation.tabs
41
extra:
42
social:
43
- icon: fontawesome/brands/github-alt
44
link: 'https://github.com/sundowndev/phoneinfoga'
45
46
# Extensions
47
markdown_extensions:
48
- markdown.extensions.admonition
49
- pymdownx.superfences
50
- pymdownx.tabbed:
51
alternate_style: true
52
- attr_list
53
- admonition
54
- pymdownx.details
55
plugins:
56
- search
57
- minify:
58
minify_html: true
59
- redirects:
60
redirect_maps:
61
'install.md': 'getting-started/install.md'
62
'usage.md': 'getting-started/usage.md'
63
'scanners.md': 'getting-started/scanners.md'
64
'go-module-usage.md': 'getting-started/go-module-usage.md'
65
'formatting.md': 'resources/formatting.md'
66
'resources.md': 'resources/additional-resources.md'
67
68