-
Notifications
You must be signed in to change notification settings - Fork 53
/
_config.yml
113 lines (100 loc) · 2.46 KB
/
_config.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
103
104
105
106
107
108
109
110
111
112
113
# Site settings
title: Black Python Devs
domain: blackpythondevs.com
description: >
Black Python Devs
# baseurl: / # the subpath of your site, e.g. /blog/
# url: https://blackpythondevs.com # the base hostname & protocol for your site
# Favicon
# favicon: images/favicon.png
# Google Analytics id, e.g. "UA-NNNNNNNN-N"
google_analytics: ""
# Site navigation - each item must have a title, a url and font awesome class.
navigation:
- text: Home
url: /
fa: fa fa-home fa-fw
- text: Blog
url: /blog/
fa: fa fa-newspaper fa-fw
- text: About Us
url: /about/
fa: fa fa-info-circle fa-fw
- text: Events
url: /events/
fa: fa fa-calendar fa-fw
- text: Community
url: /community/
fa: fa fa-users fa-fw
- text: Support Us
url: /support/
fa: fa-solid fa-money-check-dollar
bpdevs:
# Minima date format.
# Refer to https://shopify.github.io/liquid/filters/date/ if you want to customize this.
#
date_format: "%b %-d, %Y"
# Generate social links in footer.
#
social_links:
- { platform: github, user_url: "https://github.com/BlackPythonDevs/blackpythondevs.github.io" }
- { platform: discord, user_url: "https://discord.gg/XUc3tFqCT3" }
- { platform: linkedin, user_url: "https://www.linkedin.com/groups/14336241/" }
- { platform: mastodon, user_url: "https://mastodon.social/@blackpythondevs" }
- { platform: youtube, user_url: "https://www.youtube.com/@BlackPythonDevs" }
- { platform: x, user_url: "https://x.com/blackpythondevs" }
- { platform: email, user_url: "mailto:[email protected]" }
# Build settings
markdown: kramdown
highlighter: rouge
plugins:
- github-pages
- jemoji
- jekyll-feed
- jekyll-sitemap
# - jekyll-seo-tag
# - jekyll-redirect-from
# - jekyll-remote-theme
exclude:
- bin
- CNAME
- CODE_OF_CONDUCT.md
- README.md
- Gemfile*
- node_modules
- package.json
- package-lock.json
- Rakefile
- .idea/
- .gitattributes
- .gitignore
- .prettierrc
- .prettierignore
- .pytest_cache
- resources
- script
- test
- vendor
- venv
- .venv
- requirements*.txt
- pytest.ini
# timezone: America/Toronto
permalink: "/:path/"
collections:
articles:
output: true
permalink: "/:path/"
defaults:
# - scope:
# path: ""
# values:
# image: /assets/images/cards/default.png
- scope:
path: ""
type: articles
values:
layout: article
# Set to `true` to show excerpts on the homepage.
#
show_excerpts: true