-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ts
63 lines (61 loc) · 1.36 KB
/
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
import "@std/dotenv/load";
const HOSTNAME = Deno.env.get("HOSTNAME");
const PORT = Deno.env.get("PORT");
export const config = {
title: "Tim Hårek",
description:
"A technologist from Norway that cares about creating solutions that respects people's privacy, security and user experience.",
base_url: HOSTNAME != "localhost"
? "https://timharek.no"
: `http://localhost:${PORT}`,
author: {
name: "Tim Hårek Andreassen",
avatar: "/.well-known/avatar?size=250&quality=90",
email: "[email protected]",
},
logo: "img/logo.svg",
cover: "img/cover.png",
navigation: {
header: [
{
title: "Blog",
path: "/blog",
},
{
title: "About",
path: "/about",
},
{
title: "More…",
path: "/more",
},
],
footer: [
{
title: "Stats",
path: "/stats",
},
{
title: "Privacy",
path: "/privacy",
},
{
title: "Connect",
path: "/connect",
},
{
title: "Subscribe",
path: "/subscribe",
},
],
},
"rel=me": [
"https://github.com/timharek",
"https://sr.ht/~timharek",
"mailto:[email protected]",
"/public-key.asc",
"https://www.printables.com/@timharek",
"https://www.openstreetmap.org/user/timharek",
"https://codeberg.org/timharek",
],
} as const;