-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
105 lines (101 loc) · 2.67 KB
/
Copy path_config.yml
File metadata and controls
105 lines (101 loc) · 2.67 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
url: "https://datatalks.club"
baseurl: ""
name: DataTalks.Club Podcast Wiki
title: DataTalks.Club Podcast Wiki
description: Topic hubs, guides, people pages, and exploration search for the DataTalks.Club podcast archive.
permalink: pretty
search_api_url: "https://2zoro3dw5xu4jk6uo4u3q2dfim0nhdgb.lambda-url.eu-west-1.on.aws/"
og_image: "/assets/og-default.png"
logo: "/assets/og-default.png"
# Build-time entity chips: rewrite [[...]] tokens in wiki prose into typed chip
# anchors (see _extensions/chips/). Requires a wasm-capable rustkyll (>= 0.5.0).
# The committed _extensions/chips.wasm is used directly so deploys need no Rust
# toolchain; it is rebuilt by .github/workflows/build-chips-wasm.yml.
extensions:
- wasm:
path: _extensions/chips.wasm
config:
scope: "wiki"
exclude:
- .bin/
- .git/
- .github/
- .rustkyll-manifest.json
- artifacts/
- AGENTS.md
- Makefile
- README.md
- scripts/
- sources/
- _episodes/
- _topics/
- _guests/
- _people/README.md
- _podcast_summaries/README.md
- _events/README.md
- template.yaml
- search_lambda/
- lambda_package/
- .aws-sam/
- pyproject.toml
- requirements.txt
- wiki/
collections:
# books/podcast_summaries/people/events are node registries, not published
# pages. They duplicate the main datatalks.club site (or point at its public
# recordings), so we do not emit HTML for them (output: false). Their front
# matter still feeds the graph, search, and the canonical DataTalks.Club
# entity URLs; every human-facing entity link resolves to the canonical
# `source_url` on the main site.
books:
output: false
permalink: /books/:title/
podcast_summaries:
output: false
permalink: /podcasts/:title/
people:
output: false
permalink: /people/:title/
events:
output: false
permalink: /events/:title/
wiki:
output: true
permalink: /wiki/:title/
# Separate course wiki (Zoomcamp knowledge layer, datatalksclub.github.io#89).
# Kept out of _wiki so course pages have their own URL space and their own
# maintenance loop against the course repos.
course_wiki:
output: true
permalink: /course-wiki/:title/
defaults:
- scope:
path: ""
type: "podcast_summaries"
values:
layout: "podcast_summary"
- scope:
path: ""
type: "people"
values:
layout: "person"
- scope:
path: ""
type: "wiki"
values:
layout: "wiki"
- scope:
path: ""
type: "course_wiki"
values:
layout: "course_wiki"
- scope:
path: ""
type: "books"
values:
layout: "book_summary"
- scope:
path: ""
type: "events"
values:
layout: "event"