-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.js
80 lines (80 loc) · 2.09 KB
/
theme.config.js
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
export default {
docsRepositoryBase:
'https://github.com/behrends/progcontent/tree/main',
editLink: {
text: 'Diese Seite bei GitHub →',
},
feedback: {
content: undefined,
},
footer: {
text() {
return (
<span>
<abbr
title="Dieses Werk ist lizenziert unter einer Creative Commons Namensnennung - Nicht-kommerziell - Weitergabe unter gleichen Bedingungen 4.0 International Lizenz."
style={{ cursor: 'help', marginRight: '10px' }}
>
<a
rel="license"
href="https://creativecommons.org/licenses/by-nc-sa/4.0/"
target="_blank"
>
CC BY-NC-SA 4.0
</a>
</abbr>
<span>
{`© ${new Date().getFullYear()} `}
<a
rel="author"
href="https://www.behrends.io"
target="_blank"
>
Erik Behrends
</a>
</span>
<a href="/impressum" style={{ marginLeft: '10px' }}>
Impressum
</a>
</span>
);
},
},
gitTimestamp: undefined,
head: (
<>
<meta name="msapplication-TileColor" content="#fff" />
<meta httpEquiv="Content-Language" content="de" />
<meta name="description" content="Workshops Notizen" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@behrends" />
<meta
property="og:title"
content="Prog Content - Programmieren lernen"
/>
<meta
property="og:description"
content="Prog Content - Programmieren lernen"
/>
<meta name="apple-mobile-web-app-title" content="Progcontent" />
</>
),
logo: <span className="font-bold">Progcontent</span>,
project: {
link: 'https://github.com/behrends/progcontent',
},
search: {
placeholder: 'Inhalte durchsuchen…',
},
sidebar: {
defaultMenuCollapseLevel: 0,
},
useNextSeoProps() {
return {
titleTemplate: '%s',
};
},
toc: {
title: 'Auf dieser Seite',
},
};