-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
115 lines (111 loc) · 4.27 KB
/
index.html
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html lang="de">
<head>
<base href="/" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="images/favicon.png" />
<link rel="stylesheet" href="/src/styles.scss" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- Apple PWA Support -->
<meta name="mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<link rel="apple-touch-icon" href="icons/icon-512x512.png" />
<link
href="icons/iphone5_splash.png"
media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="icons/iphone6_splash.png"
media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="icons/iphoneplus_splash.png"
media="(device-width: 621px) and (device-height: 1104px) and (-webkit-device-pixel-ratio: 3)"
rel="apple-touch-startup-image"
/>
<link
href="icons/iphonex_splash.png"
media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)"
rel="apple-touch-startup-image"
/>
<link
href="icons/iphonexr_splash.png"
media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="icons/iphonexsmax_splash.png"
media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3)"
rel="apple-touch-startup-image"
/>
<link
href="icons/ipad_splash.png"
media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="icons/ipadpro1_splash.png"
media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="icons/ipadpro3_splash.png"
media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<link
href="icons/ipadpro2_splash.png"
media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image"
/>
<!-- Basic Site Information -->
<title>k9n.dev</title>
<meta
name="description"
content="Danny Koppenhagen: Entwickler, IT-Berater, Buchautor"
/>
<meta name="robots" content="index, follow" />
<meta name="author" content="Danny Koppenhagen" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@d-koppenhagen" />
<meta
name="twitter:title"
content="Danny Koppenhagen: Entwickler, IT-Berater, Buchautor"
/>
<meta name="twitter:image" content="https://k9n.dev/images/k9n.png" />
<meta
name="twitter:description"
content="📦#nodejs 🅰️#Angular,💡#TypeScript,⚡️#RxJS, ♻️#NgRx, 🔰 #Vue.js 👨🏻💻 Developer @dbsystel📕Author @angular_buch https://angular-buch.com, writer @indepth_dev"
/>
<!-- Open Graph Profile -->
<meta property="og:type" content="profile" />
<meta property="og:title" content="k9n.dev" />
<meta property="og:url" content="https://k9n.dev" />
<meta property="og:image" content="https://k9n.dev/images/k9n.png" />
<meta property="profile:first_name" content="Danny" />
<meta property="profile:last_name" content="Koppenhagen" />
<meta property="profile:gender" content="male" />
<link rel="manifest" href="manifest.webmanifest" />
<meta name="theme-color" content="#e7e7e7" />
</head>
<body id="page-wrapper" class="mat-typography">
<!-- Angular -->
<dk-root></dk-root>
<script type="module" src="/src/main.ts"></script>
</body>
</html>