-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pages.yml
146 lines (142 loc) · 3.25 KB
/
.pages.yml
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
media:
input: src/assets
output: ../../assets
content:
- name: config
label: Website configuration
path: src/config.json
type: file
fields:
- name: SITE_TITLE
label: Title
type: string
- name: SITE_DESCRIPTION
label: Description
type: string
- name: SITE_FAVICON
label: Favicon
type: string
- name: NAME
label: Your name
type: string
- name: POSTS_PER_PAGE
label: Posts per page
type: number
default: 5
- name: MANUAL_DARK_MODE
label: Show dark mode toggle
type: boolean
default: true
- name: SEARCH_ENABLED
label: Enable search
type: boolean
default: true
- name: BASE_COLOR
label: Base color
type: select
options:
values: [slate, stone, gray, neutral, zinc]
- name: ACCENT_COLOR
label: Accent color
type: select
options:
values:
[
red,
orange,
amber,
yellow,
lime,
green,
emerald,
teal,
cyan,
sky,
blue,
indigo,
violet,
purple,
fuchsia,
pink,
rose,
]
- name: SOCIAL_LINKS
label: Social links
type: object
fields:
- name: FACEBOOK_URL
label: Facebook URL
type: string
- name: TWITTER_URL
label: Twitter URL
type: string
- name: INSTAGRAM_URL
label: Instagram URL
type: string
- name: LINKEDIN_URL
label: LinkedIn URL
type: string
- name: GITHUB_URL
label: GitHub URL
type: string
- name: EMAIL
label: Email
type: string
- name: YOUTUBE_URL
label: YouTube URL
type: string
- name: SUBSTACK_URL
label: Substack URL
type: string
- name: about
label: About page
path: src/content/info/about.md
type: file
fields:
- name: body
label: Body
type: rich-text
- name: description
label: Description
path: src/content/info/description.md
type: file
fields:
- name: body
label: Body
type: rich-text
- name: posts
label: Posts
path: src/content/blog
type: collection
filename: "{primary}.md"
view:
fields: [title, published, description, pubDate]
primary: title
sort: [date, title]
default:
search: ""
sort: title
order: desc
fields:
- name: title
label: Title
type: string
- name: description
label: Description
type: string
- name: published
label: Published
type: boolean
default: false
- name: pubDate
label: Creation date
type: date
options:
format: MMM dd yyyy
min: 2023-12-24
- name: heroImage
label: Hero Image
type: image
- name: body
label: Body
type: rich-text