forked from Consensys/smart-contract-best-practices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
102 lines (96 loc) · 2.9 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Refer to https://github.com/mkdocs/mkdocs/blob/master/mkdocs.yml for a working example
site_name: Ethereum Smart Contract Best Practices
site_url: https://consensys.github.io/smart-contract-best-practices/
site_description: Ethereum Smart Contract Security Best Practices
site_author: ConsenSys Diligence
repo_url: https://github.com/ConsenSys/smart-contract-best-practices
repo_name: Github
remote_branch: gh-pages
remote_name: origin
nav:
- Home: index.md
- General Philosophy: general_philosophy.md
- Secure Development Recommendations: recommendations.md
- Known Attacks: known_attacks.md
- Software Engineering Techniques: software_engineering.md
- Token specific recommendations: tokens.md
- Documentation and Procedures: documentation_procedures.md
- Security Tools: security_tools.md
- Bug Bounty Programs: bug_bounty_list.md
- About:
- Reviewers: about/reviewers.md
- License: about/license.md
- Contributing: about/contributing.md
theme:
name: 'material'
custom_dir: 'custom'
logo: 'assets/images/CDili.png'
favicon: 'assets/images/CDili_black.png'
language: en
features:
- navigation.instant
- header.autohide
- navigation.sections
- navigation.top
palette:
- scheme: default
primary: black
accent: deep-purple
toggle:
icon: material/lightbulb
name: Switch to light mode
- scheme: slate
primary: black
accent: cyan
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
extra_css:
- 'stylesheets/extra.css'
extra:
social:
- icon: fontawesome//solid/shield-alt
link: https://consensys.net/diligence/blog/
- icon: fontawesome/brands/github
link: https://github.com/ConsenSys/
- icon: fontawesome/brands/twitter
link: https://twitter.com/ConsenSysAudits
- icon: fontawesome/brands/medium
link: https://medium.com/consensys-diligence
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/channel/UCkoGLA5DUdXO4Qfo_9RDjIA/playlists
analytics:
provider: google
property: UA-64552723-12
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
markdown_extensions:
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.critic:
mode: view
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- def_list
- footnotes
- meta
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.caret
- pymdownx.details
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tilde
- markdown_include.include