-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.js
More file actions
103 lines (102 loc) · 2.51 KB
/
config.js
File metadata and controls
103 lines (102 loc) · 2.51 KB
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
/**
* @author Tempest
* @email tar118@pitt.edu
* @create date 2026-02-14
* @modify date 2026-05-13
* @desc Blog Configuration - Generated by GUI Config Editor
*/
const config = {
debug: false,
// github readme url
readmeUrl: 'https://github.com/tempest2023/ConciseMarkDownBlog/blob/main/README.md',
// blog title, on left top of the page
title: 'Tempest\'s Blog',
// author name
name: 'Tempest',
// social links, on bottom of the page
social: {
github: 'https://github.com/tempest2023',
linkedin: 'https://www.linkedin.com/in/taoren-pitt/'
},
email: 'tar118@pitt.edu',
repo: 'https://github.com/tempest2023/ConciseMarkDownBlog',
resume_url: 'https://drive.google.com/file/d/1aNJ-NPuk71x4xQgRo5Es2WPyNZA8kbCb/view?usp=sharing',
// default content shown on the main page, /src/articles/[config.default].md
default: 'About',
headers: [
{
title: 'About',
type: 'article'
},
{
title: 'Tech Stack',
type: 'article',
customUrl: 'TechStack'
},
{
title: 'Blog',
type: 'article'
},
{
title: 'Projects',
type: 'article',
customUrl: 'Projects/Project'
},
{
title: 'Links',
type: 'article'
},
{
title: 'MarkDown',
type: 'article',
icon: 'bi-markdown',
ariaLabel: 'Markdown Editor'
},
{
title: '3D Portfolio',
type: 'link',
customUrl: 'https://3d.tempest.fun/',
icon: 'bi-badge-3d',
ariaLabel: '3D Portfolio'
}
],
// markdown settings
markdown: {
// set it false to disable markdown editor
enable: true,
// set it true to enable loading animation in refreshing markdown preview.
loading: false,
// delay time for refreshing markdown preview
renderDelay: 0,
// tab size for markdown editor
tabSize: 4,
// the links in markdown does not have underlines, set it true to enable underline
linkStyle: {
textDecoration: 'none',
color: '#0077ff'
}
},
// show theme switch button in the header, default to true
themeEnable: true,
// show footer with social links and copyright, default to true
footer: true,
colors: {
light: {
background: '#ffffff',
foreground: '#0077ff',
gray: '#6c757d',
text: '#212529',
border: '#dee2e6',
cardBg: '#f8f9fa'
},
dark: {
background: '#212529',
foreground: '#0d6efd',
gray: '#adb5bd',
text: '#f8f9fa',
border: '#495057',
cardBg: '#343a40'
}
}
}
export default config;