-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.php
More file actions
73 lines (63 loc) · 1.96 KB
/
config.example.php
File metadata and controls
73 lines (63 loc) · 1.96 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
<?php
//
$site_url = "https://example.com";
// 站点head信息设置
$site_title = "Welcome to example.com";
$site_intro = "This is an example.";
$site_keyword = "example";
$site_favicon = "https://gravatar.junbo.wang/avatar/92f14fcd71bdc4008eb6d7f2e6ca50e8?s=128&r=R&d=";
// 站点界面设置
$site_header_name = "example";
$site_header_light_color = "#000";
$site_header_dark_color = "#fff";
$site_header_icon = "https://gravatar.junbo.wang/avatar/92f14fcd71bdc4008eb6d7f2e6ca50e8?s=128&r=R&d=";
$site_background_light = "$site_url/src/img/background_light.png";
$site_background_dark = "$site_url/src/img/background_dark.png";
$site_footer = 'Footer content. ';
// 站点网站项目展示信息设置
$websites_list = array(
array(
"name" => "SiteName 1",
"host" => "example.com",
"url" => "https://example.com",
"icon" => "./src/img/sitelogos/example.png",
"description" => "Introduction",
"show_in_slug" => 1
),
array(
"name" => "SiteName 1",
"host" => "example.com",
"url" => "https://example.com",
"icon" => "./src/img/sitelogos/example.png",
"description" => "Introduction",
"show_in_slug" => 1
),
);
$blog_api = "https://blog.example.com/api/posts?showContent=false&pageSize=7&page=1";
$about_text = "This is an example.";
$about_contacts = array(
array(
"id" => "GitHub",
"link" => "https://github.com/example",
"text" => "GitHub @example"
),
array(
"id" => "Telegram",
"link" => "https://t.me/example",
"text" => "Telegram @example"
),
array(
"id" => "Twitter",
"link" => "https://twitter.com/example",
"text" => "Twitter @example"
),
);
$friends_link = array(
array(
"name" => "Friend 1",
"host" => "example.com",
"url" => "https://example.com",
"icon" => "./src/img/sitelogos/example.png",
"description" => "Introduction",
),
);