forked from Consensys/smart-contract-best-practices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
67 lines (61 loc) · 2 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
# 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
repo_url: https://github.com/ConsenSys/smart-contract-best-practices
pages:
- 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: 'theme'
logo: 'assets/images/CDili.png'
favicon: 'assets/images/CDili_black.png'
language: en
extra_css:
- 'stylesheets/extra.css'
extra:
social:
- icon: material/github-box
link: https://github.com/ConsenSys/
- icon: material/twitter-box
link: https://twitter.com/ConsenSysAudits
- icon: material/medium
link: https://medium.com/consensys-diligence
- icon: material/youtube
link: https://www.youtube.com/channel/UCkoGLA5DUdXO4Qfo_9RDjIA/playlists
google_analytics:
- UA-64552723-12
- auto
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc(permalink=true)
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.arithmatex
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde
- markdown_include.include