-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.toml
98 lines (83 loc) · 3.4 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
# Adapted from serene v2.1.2
base_url = "https://thedataquarry.github.io"
title = "The Data Quarry"
description = "A.I. and data from a Python and Rust perspective"
default_language = "en"
output_dir = "public"
compile_sass = true
minify_html = true
build_search_index = false # Keep this false, search is temporarily unsupported
generate_feeds = true
feed_filenames = ["atom.xml"]
taxonomies = [
{ name = "tags" },
{ name = "categories" },
]
[markdown]
highlight_code = true
highlight_theme = "nord"
extra_syntaxes_and_themes = ["highlight_themes"]
highlight_themes_css = [
{ theme = "serene-light", filename = "hl-light.css"},
{ theme = "serene-dark", filename = "hl-dark.css"},
]
render_emoji = false
external_links_target_blank = false
external_links_no_follow = true
external_links_no_referrer = true
smart_punctuation = true
[slugify]
paths = "on"
taxonomies = "on"
anchors = "on"
#=========================================================================================
[extra]
blog_name = "The Data Quarry"
author = "Prashanth Rao"
bio = "A.I., data engineering and more..."
avatar = "img/dataquarry-banner.webp"
# Set banners
links = [
{ name = "GitHub", icon = "github", url = "https://github.com/prrao87" },
{ name = "Twitter", icon = "twitter", url = "https://twitter.com/tech_optimist" },
{ name = "LinkedIn", icon = "linkedin", url = "https://www.linkedin.com/in/prrao87" },
{ name = "Buy me a coffee", icon = "buymeacoffee", url = "https://www.buymeacoffee.com/prrao87" }
]
homepage_layout = "about" # "about" | "list"
sections = [
{ name = "blog", path = "/posts", is_external = false },
{ name = "talks", path = "/talks", is_external = false },
{ name = "projects", path = "/projects", is_external = false },
]
blog_section_path = "/posts"
nav_separator = "::"
nav_wrapper_left = "{"
nav_wrapper_right = "} ;"
nav_wrapper_separator = ","
blog_categorized = true # Whether to categorize blog posts
blur_effect = true # Whether to turn on blur effect on navigation bar
back_to_top = true # Whether to show back-to-top button on post pages
toc = false # Whether to show Table-Of-Contents by default
copy = true # Whether to add a copy button on code blocks by default
comment = false # Whether to show giscus comment section by default, see https://giscus.app for more info
display_tags = true # Whether to display tags on post pages by default
truncate_summary = true # Whether to truncate the summary of a post by default
outdate_alert = false # Whether to show outdate alert by default
outdate_alert_days = 120 # How many days will a post be outdated by default
outdate_alert_text_before = "This article was last updated "
outdate_alert_text_after = " days ago and may be out of date."
footer_copyright = "© 2024 Prashanth Rao"
footer_credits = true # Whether to show "powered by zola and serene" in footer
not_found_title = "404"
not_found_error_text = "Not Found"
not_found_recover_text = "« back to home »"
## Open Graph + Twitter Cards
[extra.seo]
# this image will be used as fallback if a page has no image of its own
image = "img/dataquarry-banner.png"
image_height = 0
image_width = 0
og_locale = "en_US"
[extra.seo.twitter]
site = "tech_optimist"
creator = "tech_optimist"