-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsite_config.py
More file actions
130 lines (122 loc) · 4.58 KB
/
site_config.py
File metadata and controls
130 lines (122 loc) · 4.58 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# site_config.py - Central site configuration
#
# Edit this file to customize your deployment. All site generation
# scripts read from here so you only need to change values once.
#
# ------------------------------------------------------------------
# Custom domain examples
# ------------------------------------------------------------------
# For ciscoinabox.com:
# SITE_URL = "https://ciscoinabox.com"
# SITE_BASEURL = ""
#
# For cisoinabox.cisocurious.com:
# SITE_URL = "https://cisoinabox.cisocurious.com"
# SITE_BASEURL = ""
#
# For GitHub Pages (default):
# SITE_URL = "https://ciso-in-a-box.github.io"
# SITE_BASEURL = "/ciso-in-a-box-site"
# ------------------------------------------------------------------
SITE_TITLE = "CISO-in-a-Box"
SITE_AUTHOR = "CISOinaBox Contributors"
SITE_EMAIL = "contributors@ciso-in-a-box.org"
SITE_DESCRIPTION = (
"A comprehensive guide to cybersecurity and risk management "
"for organizations, aspiring CISOs, and security professionals."
)
SITE_URL = "https://ciso-in-a-box.github.io"
SITE_BASEURL = "/ciso-in-a-box-site"
GITHUB_REPO_URL = "https://github.com/CroodSolutions/CISOinaBox"
GITHUB_ORG = "CroodSolutions"
GITHUB_REPO_NAME = "CISOinaBox"
GITHUB_BRANCH = "main"
# ---- Homepage layout --------------------------------------------------
# Section numbers reference SECTION_METADATA in generate_site.py.
# Slugs are resolved automatically, so renaming a section directory
# will not break links.
PATHWAY_CARDS = [
{
"title": "The New CISO",
"description": (
"Just landed the role? Start here to navigate your first "
"90 days, build relationships, and set the strategy."
),
"icon": "fas fa-flag",
"topics": [
"Getting Started (First 90 Days)",
"Security Leadership Strategy",
"Enterprise Risk Management",
],
"link_section": 1,
"color": "#289dff",
},
{
"title": "The Program Builder",
"description": (
"Focus on architecture, engineering, and operations. "
"Build the systems that defend the business."
),
"icon": "fas fa-tools",
"topics": [
"Security Architecture",
"SecOps & Incident Response",
"Vulnerability Management",
],
"link_section": 6,
"color": "#7952b3",
},
{
"title": "The Strategist",
"description": (
"Align security with business goals. "
"Master GRC, compliance, insurance, and resilience."
),
"icon": "fas fa-chess",
"topics": [
"Governance, Risk & Compliance",
"Business Continuity (BCP)",
"Cyber Insurance",
],
"link_section": 12,
"color": "#ffc107",
},
]
HOMEPAGE_MODULES = [
{"section": 5, "icon": "fas fa-shield-alt", "short_title": "CIS18 Controls", "subtitle": "Critical Framework"},
{"section": 4, "icon": "fas fa-map-marked-alt", "short_title": "Attack Surface", "subtitle": "Know your perimeter"},
{"section": 9, "icon": "fas fa-id-card", "short_title": "IAM Overview", "subtitle": "Identity is the perimeter"},
{"section": 7, "icon": "fas fa-code", "short_title": "AppSec", "subtitle": "Secure Development"},
{"section": 13, "icon": "fas fa-users", "short_title": "Security Awareness", "subtitle": "Human Firewall"},
{"section": 19, "icon": "fas fa-book", "short_title": "Standards", "subtitle": "ISO, NIST, SOC2"},
{"section": 3, "icon": "fas fa-user-secret", "short_title": "Threat Intel", "subtitle": "Know your adversary"},
{"section": 22, "icon": "fas fa-box-open", "short_title": "Resources", "subtitle": "Tools & Templates"},
]
# ---- Navbar -----------------------------------------------------------
# Each item links to a section number (resolved to slug automatically),
# a special page name, or an external URL.
NAVBAR_CONFIG = [
{
"label": "Browse the Guide",
"items": [
{"label": "Start Here", "section": 1},
{"label": "Browse All Sections", "page": "sections"},
{"label": "Resources", "section": 22},
],
},
{
"label": "Learning Paths",
"items": [
{"label": "The New CISO", "section": 1},
{"label": "The Program Builder", "section": 6},
{"label": "The Strategist", "section": 12},
],
},
{
"label": "Project and Source",
"items": [
{"label": "Contributing", "page": "contributing"},
{"label": "GitHub Repo", "url": "github"},
],
},
]