-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
108 lines (93 loc) · 2.45 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
baseURL = "https://lionir.ca/"
languageCode = "en-us"
title = "The Lion"
paginate = "10"
enableEmoji = true
[author]
name = "Lionir Deadman"
url = "https://lionir.ca/about/"
avatar = "cool_profile"
[taxonomies]
tag = 'tags'
[permalinks]
posts = '/posts/:filename/'
ramblings = '/ramblings/:filename/'
micro = '/micro/:filename/'
[mediaTypes]
[mediaTypes.'text/gemini']
suffixes = ['gmi']
[outputFormats]
[outputFormats.jsonfeed]
mediaType = "application/json"
baseName = "feed"
isPlainText = true
[outputFormats.atom]
mediaType = "application/xml"
baseName = "atom"
isPlainText = true
[outputFormats.gemini]
mediaType = "text/gemini"
baseName = "index"
isPlainText = true
[outputFormats.logo]
mediaType = "image/svg+xml"
baseName = "logo"
isPlainText = true
[outputFormats.header]
mediaType = "image/svg+xml"
baseName = "header"
isPlainText = true
[outputFormats.stylesheet]
mediaType = "text/css"
baseName = "main"
isPlainText = true
[outputs]
home = ["html", "gemini", "atom", "jsonfeed", "logo", "header", "stylesheet", "json"]
list = ["html", "gemini"]
term = ["html"]
search = ["html"]
posts = ["html", "gemini"]
ramblings = ["html", "gemini"]
micro = ["html", "gemini"]
taxonomy = ["html"]
single = ["html", "gemini"]
section = ["html", "gemini"]
page = ["html", "gemini"]
[privacy.twitter]
enableDNT = true
simple = true
[privacy.youtube]
privacyEnhanced = true
[params]
# Orange ca1300 f05000
# Purple 8410cc cc10b6
# Blue 008dc9 00b8c9
# Pink d75090 f9426f
# Autumn 731c12 b34410
# Gold e73602 dda30e
primary_colour = "#ca1300"
secondary_colour = "#f05000"
icon = "/logo.png"
websub = "https://thelion.superfeedr.com"
description = "Hi! I'm Lionir Deadman but just can just call me Lion for short. This is my website!"
links = [ {url = "/feeds/", name = "Feeds"},
{url = "/projects/", name = "Projects"},
{url = "/tracking/", name = "Tracking"},
{url = "/about/", name = "About"}
]
[params.stylesheet]
gap = 24
content_gap = "20px"
nav_width = "1024px"
main_width = "640px"
header_height = "300px"
footer_height = "96px"
radius = 20
theme = "#fff"
theme_bg = "#f0edee"
entry = "#fff"
primary = "#007ac6"
secondary = "rgba(0, 0, 0, 0.56)"
tertiary = "rgba(0, 0, 0, 0.16)"
content = "rgba(0, 0, 0, 0.88)"
code_bg = "#202024"