-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
80 lines (69 loc) · 2.32 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
baseURL = "https://danielcorin.com/"
languageCode = "en-us"
theme = "poison"
pluralizelisttitles = false
title = "Way Enough"
enableRobotsTXT = true
staticDir = ["static", "_static"]
[params.author]
name = "Dan Corin"
email = "[email protected]"
url = "https://danielcorin.com/about"
avatar = "https://danielcorin.com/img/me.jpeg"
[params]
brand = "Way Enough" # appears in the sidebar
description = "Mostly software stuff"
dark_mode = true
rss_icon = true
paginate = 10
front_page_content = ["posts", "til"]
# MENU PLACEHOLDER
# Menu dict keys:
# Name: The name to display on the menu.
# URL: The directory relative to the content directory.
# HasChildren: If the directory's files should be listed. Default is true.
# Limit: If the files should be listed, how many should be shown.
menu = [
{ Name = "🔎 Search", URL = "/search/", HasChildren = false },
{ Name = "📖 Posts", URL = "/posts/", Pre = "Recent", HasChildren = false },
{ Name = "📝 Today I Learned", URL = "/til/", HasChildren = false },
{ Name = "✏️ Logs", URL = "/logs/", HasChildren = false },
{ Name = "👋 About", URL = "/about/", HasChildren = false },
{ Name = "🏗️ Projects", URL = "/projects/" },
{ Name = "🌱 Garden", URL = "/garden/", HasChildren = false },
{ Name = "💻 Uses", URL = "/uses/", HasChildren = false },
{ Name = "📍 Now", URL = "/now/", HasChildren = false },
]
# Links to your socials.
email_url = "mailto://[email protected]"
twitter_url = "https://twitter.com/danielcorin1"
bluesky_url = "https://bsky.app/profile/danielcorin.com"
github_url = "https://github.com/danielcorin"
keybase_url = "https://keybase.io/danielcorin/"
linkedin_url = "https://www.linkedin.com/in/danielcorin/"
stackoverflow_url = "https://stackoverflow.com/users/2631732/daniel-corin"
[taxonomies]
series = "series"
tags = "tags"
[markup.goldmark.renderer]
unsafe = true
[outputs]
home = ["HTML", "RSS", "JSON", "SearchIndex"]
page = ["HTML", "Markdown"]
section = ["HTML", "RSS"]
[services]
[services.rss]
limit = 50
[mediaTypes]
[mediaTypes."text/markdown"]
suffixes = ["md"]
[outputFormats]
[outputFormats.Markdown]
mediaType = "text/markdown"
isPlainText = true
isHTML = false
baseName = "index"
rel = "alternate"
[outputFormats.SearchIndex]
mediaType = "application/json"
baseName = "search"