-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite-config.ts
68 lines (66 loc) · 1.62 KB
/
website-config.ts
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
export interface WebsiteConfig {
title: string;
description: string;
coverImage?: string;
logo: string;
/**
* Specifying a valid BCP 47 language helps screen readers announce text properly.
* See: https://dequeuniversity.com/rules/axe/2.2/valid-lang
*/
lang: string;
/**
* blog full path, no ending slash!
*/
siteUrl: string;
/**
* full url, no username
*/
facebook?: string;
/**
* full url, no username
*/
twitter?: string;
/**
* hide or show all email subscribe boxes
*/
showSubscribe: boolean;
/**
* create a list on mailchimp and then create an embeddable signup form. this is the form action
*/
mailchimpAction?: string;
/**
* this is the hidden input field name
*/
mailchimpName?: string;
/**
* name and id of the mailchimp email field
*/
mailchimpEmailFieldName?: string;
/**
/**
* Meta tag for Google Webmaster Tools
*/
googleSiteVerification?: string;
/**
/**
* Appears alongside the footer, after the credits
*/
footer?: string;
}
const config: WebsiteConfig = {
title: 'TornHub',
description: 'A Fan Site for Torn City',
coverImage: 'img/tornhub-cover.jpg',
logo: 'img/tornhub.png',
lang: 'en',
siteUrl: 'https://torn.oran.pw/',
facebook: '#',
twitter: '#',
showSubscribe: false,
mailchimpAction: 'https://twitter.us19.list-manage.com/subscribe/post?u=a89b6987ac248c81b0b7f3a0f&id=7d777b7d75',
mailchimpName: 'b_a89b6987ac248c81b0b7f3a0f_7d777b7d75',
mailchimpEmailFieldName: 'MERGE0',
googleSiteVerification: 'GoogleCode',
footer: 'Developed and Maintained by ORAN',
};
export default config;