forked from CyberSentinels/cybersentinels.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
115 lines (101 loc) · 2.95 KB
/
config.toml
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
# Use an empty string if you have multiple domain linking to your website
# This string is used to generate the absolute URL for your assets.
baseURL = 'https://cybersentinels.org'
defaultContentLanguage = 'en'
# Emoji in markdown files
enableEmoji = true
languageCode = 'en-us'
# Number of blog post per page
paginate = 10
theme = 'pico'
# Title of the website is used for the meta tag title
# and the square icon (not the favicon)
title = 'The Cyber Sentinels Club'
[params]
customCSS = [
"style/style.css",
"style/theme.sass",
] # Path relative to assets folder
customJS = ["js/console.js"] # Path relative to assets folder
# Homepage description
# For blog page description you can overwrite it
# in the front matter
description = "The mission of The Cyber Sentinel Club is to create a community of cyber and IT professionals who are committed to sharing knowledge and collaborating on new ideas, projects, and learning opportunities."
email = "[email protected]"
favicon = '/icons/favicon.ico'
# Dark mode support
# Supported value are :
# - off
# - always
# If commented the theme will use the browser theme.
# darkMode = 'always'
# Social parameters for contact_icons widget
# [[params.social]]
# alt = "email icon"
# icon = "/icons/email.svg"
# name = "email"
# url = "mailto:[email protected]"
[[params.social]]
alt = "github icon"
blank = true
icon = "/icons/github.svg"
name = "github"
url = "https://github.com/CyberSentinels"
# [[params.social]]
# alt = "medium icon"
# blank = true
# icon = "/icons/medium.svg"
# name = "medium"
# url = "https://medium.com/"
# [[params.social]]
# alt = "stack-overflow icon"
# blank = true
# icon = "/icons/stack-overflow.svg"
# name = "stack-overflow"
# url = "https://stackoverflow.com/"
# [[params.social]]
# alt = "twitter icon"
# blank = true
# icon = "/icons/twitter.svg"
# name = "twitter"
# url = "https://twitter.com/"
# [[params.social]]
# alt = "facebook icon"
# blank = true
# icon = "/icons/facebook.svg"
# name = "facebook"
# url = "https://facebook.com/"
# Navigation bar
[menu]
[[menu.main]]
identifier = "home" # identifier is use for translations
pre = "" # pre is inserted before the translation (icons, image, etc)
url = "/"
weight = 10
[[menu.main]]
identifier = "articles" # identifier is use for translations
pre = "" # pre is inserted before the translation (icons, image, etc)
url = "/articles"
weight = 20
[[menu.main]]
identifier = "writeups" # identifier is use for translations
pre = "" # pre is inserted before the translation (icons, image, etc)
url = "/writeups"
weight = 25
# Syntax highlightning
[markup.highlight]
guessSyntax = true
lineNumbersInTable = true
noClasses = false # Set to false to use the Pico default theme.
tabWidth = 2
[taxonomies]
category = "categories"
tag = "tags"
# Translation
# English, French and Italian are supported but you can contribute
# by adding translation to i18n/ folder.
[languages.en]
contentDir = 'content/en'
languageCode = 'en'
languageName = 'English'
weight = 0