-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopaz_config.json
67 lines (67 loc) · 1.86 KB
/
topaz_config.json
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
{
"database": {
"address": "localhost",
"name": "blog",
"user": "dbuser",
"password": "dbpass"
},
"user_permissions": {
"admin_ticket": "changeme",
"open_registration": false,
"show_login_links": true,
"allow_read_by_default": true
},
"content": {
"site_title": "My Blog",
"site_description": "A blog about me!",
"site_image": "/images/sample/site.png",
"site_icon": "/images/sample/icon.png",
"site_header": "My Blog",
"copyright": {
"name": "John Smith",
"start_year": "2021",
"end_year": null
},
"contact_email": "[email protected]",
"contact_email_text": "Email Me",
"github_url": "https://github.com/caseif/Topaz",
"navbar_links": [
{
"type": "icon",
"icon_namespace": "fab",
"icon_id": "linkedin",
"title_text": "LinkedIn",
"url": "https://linkedin.com/JohnnyAppleseed",
"new_tab": true
},
{
"type": "text",
"text": "About",
"title_text": "About Me",
"url": "/content/about.php"
}
],
"external_links": [
{
"text": "GitHub",
"title_text": "My GitHub Profile",
"url": "https://github.com/github",
"new_tab": true
}
],
"rel_me_links": [
{
"url": "https://mastodon.social/@mastodon"
}
]
},
"display": {
"home_recent_post_count": 5,
"sidebar_recent_post_count": 5,
"post_preview_chars": 600,
"post_social_chars": 150
},
"internal": {
"use_google_fonts": true
}
}