-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
117 lines (91 loc) · 2.98 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
116
117
# The URL the site will be built for
base_url = "https://r6.technology/"
theme = "hacker"
# The title of the site
title = "r6.technology"
# The description of the site
description = "Hey check this out"
author = "Ryan Cast"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to minify the HTML when building the site
minify_html = false
# Whether to generate an Atom feed
generate_feeds = true
# Taxonomies
taxonomies = [{ name = "tags" }]
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
highlight_theme = "charcoal"
# Whether to render emojis
render_emoji = true
# Whether footnotes are rendered in the GitHub-style (at the bottom, with back references) or plain (in the place, where they are defined)
bottom_footnotes = true
[extra]
title_separator = "|" # set as |, -, _, etc
# The path to the logo of the site
logo = "images/logo.png"
# Google Analytics tracking ID
# google_analytics = "example-tracking-id"
# Contact form script id that points to google macros (e.g. https://script.google.com/macros/s/<script-identifier>/exec)
contact_form_script_id = "<script-identifier>"
# Visitor notifier based on IFTTT + Webhooks. Sample here - /assets/js/monitor.js
monitor = false
# Menu items
menu = [{ url = "/about", name = "About" }, { url = "/tags", name = "Tags" }]
language_code = "en-US"
# Enable OpenGraph metadata
opengraph = false
timezone = "UTC"
# timeformat = ""
# The path to cv file if you use cv shortcode
# cv_file = "/files/Curriculum_Vitae.pdf"
# provide link to edit page on github
edit_page = true
# Use theme specific tags page based on templates/tags.html
simplified_tags = false
# Social links
social_links = [
{ platform = "email", user_id = "[email protected]" },
{ platform = "github", user_id = "r6t" },
# { platform = "linkedin", user_id = "johndoe" },
{ platform = "feed", user_id = true },
# { platform = "keyoxide", user_id = "aspe:host:XXXXXXX" },
# { platform = "facebook", user_id = "" },
# { platform = "instagram", user_id = "" },
# { platform = "pinterest", user_id = "" },
# { platform = "twitter", user_id = "" },
# { platform = "stackoverflow", user_id = "" },
# { platform = "youtube", user_id = "" },
# { platform = "telegram", user_id = "" },
]
# GitHub settings that are used to generate the edit page link
[extra.github]
username = "r6t"
repo = "r6-technology-site"
# Giscus settings
[extra.giscus]
repo = "r6t/r6-technology-site"
repo_id = "R_kgDONMlyug"
category = "Comments"
category_id = "DIC_kwDONMlyus4ClBd2"
mapping = "pathname"
strict = 0
reactions_enabled = 1
emit_metadata = 0
input_position = "top"
theme = "preferred_color_scheme"
lang = "en"
loading = "lazy"
crossorigin = "anonymous"
# JSON-LD metadata
[extra.bio]
gender = "male"
employer_name = "Cloudcast"
employer_url = "https://cloudcast.consulting"
job_title = "Cloud Engineer"
links = [
"https://ryancast.com",
]