-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
128 lines (112 loc) · 2.31 KB
/
_config.yml
File metadata and controls
128 lines (112 loc) · 2.31 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
# Jekyll Configuration for Python for DevOps Repository
# Site settings
title: Python for DevOps
description: >-
A comprehensive course designed to equip you with essential Python skills
tailored for DevOps practices. Learn automation, testing, CI/CD, and more.
baseurl: "/python-for-devops"
url: "https://karadhub.github.io"
# GitHub repository
repository: karadHub/python-for-devops
github_username: karadHub
# Build settings
markdown: kramdown
highlighter: rouge
theme: minima
# Plugins
plugins:
- jekyll-feed
- jekyll-sitemap
- jekyll-seo-tag
- jekyll-relative-links
# Relative links settings
relative_links:
enabled: true
collections: false
# Code highlighting
kramdown:
syntax_highlighter: rouge
syntax_highlighter_opts:
block:
line_numbers: true
# Collections
collections:
fundamentals:
output: true
permalink: /:collection/:name/
intermediate:
output: true
permalink: /:collection/:name/
examples:
output: true
permalink: /:collection/:path/
# Navigation
header_pages:
- README.md
- PythonJourney.md
- Fundamental/basic_python.md
- Intermediate/testing_fundamentals.md
# Exclude from processing
exclude:
- .gitignore
- .gitattributes
- Gemfile
- Gemfile.lock
- node_modules
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/
- examples/testing/automation_scripts/
- "*.pyc"
- __pycache__/
- .pytest_cache/
- htmlcov/
- .coverage
# Include additional files
include:
- .htaccess
- _pages
# Sass/SCSS settings
sass:
sass_dir: _sass
style: compressed
# Pagination
paginate: 10
paginate_path: "/page:num/"
# SEO settings
lang: en_US
author: karadHub
twitter:
username: karadHub
# Social links
social:
- platform: github
user_url: "https://github.com/karadHub"
- platform: linkedin
user_url: "https://linkedin.com/in/your-profile"
# Google Analytics (optional)
# google_analytics: UA-XXXXXXXX-X
# Defaults
defaults:
- scope:
path: ""
type: "posts"
values:
layout: "post"
author: "karadHub"
- scope:
path: "Fundamental"
values:
layout: "page"
category: "fundamental"
- scope:
path: "Intermediate"
values:
layout: "page"
category: "intermediate"
- scope:
path: "examples"
values:
layout: "page"
category: "examples"