Skip to content

Commit bdbf48c

Browse files
committed
meta data and manifest fix
1 parent 6bcd7ad commit bdbf48c

6 files changed

+21
-4
lines changed

images/icon-16x16.png

134 Bytes
Loading

images/icon-192x192.png

418 Bytes
Loading

images/icon-32x32.png

154 Bytes
Loading

images/icon-512x512.png

3.15 KB
Loading

index.html

+8-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,21 @@
77
<meta charset="utf-8">
88
<meta name="viewport" content="width=device-width">
99
<title>Orienteering, Takoma Park</title>
10-
<link rel="icon" type="image/x-icon" href="/EagleProject/images/icon.png" >
10+
<link rel="icon" type="image/x-icon" href="/EagleProject/images/icon.png" >
11+
<link rel="icon" type="image/png" sizes="16x16" href="/EagleProject/images/icon-16x16.png">
12+
<link rel="icon" type="image/png" sizes="32x32" href="/EagleProject/images/icon-32x32.png">
13+
<link rel="icon" type="image/png" sizes="192x192" href="/EagleProject/images/icon-192x192.png">
14+
<link rel="icon" type="image/png" sizes="512x512" href="/EagleProject/images/icon-512x512.png">
15+
<link rel="apple-touch-icon" href="/EagleProject/images/icon-192x192.png">
1116
<meta name="description" content="Orienteering Takoma Park, an Eagle Scout Project created by Dominik Honzak">
1217
<meta name="url" content="https://dahonzak.github.io/EagleProject/">
1318
<meta property="og:title" content="Orienteering, Takoma Park">
1419
<meta property="og:type" content="website">
1520
<meta property="og:url" content="https://dahonzak.github.io/EagleProject/">
16-
<meta property="og:image" content="/EagleProject/images/icon.png">
21+
<meta property="og:image" content="https://dahonzak.github.io/EagleProject/images/icon.png">
1722
<meta property="og:description" content="Orienteering Takoma Park, an Eagle Scout Project created by Dominik Honzak">
1823
<meta name="theme-color" content="orange">
19-
<link href="css/style.css" rel="stylesheet" type="text/css" />
24+
<link href="css/style.css" rel="stylesheet" type="text/css" />
2025
<link href="css/mobile.css" rel="stylesheet" type="text/css" />
2126
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
2227
<meta name="google-site-verification" content="jd3ydL8eOn__ZNI7blTVkEaDsqllxdKRLuz42Y2-47E" />

manifest.json

+13-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,17 @@
22
"name": "Orienteering, Takoma Park",
33
"short_name": "Orienteering",
44
"start_url": "/EagleProject/index.html",
5-
"display": "standalone"
5+
"display": "standalone",
6+
"icons": [
7+
{
8+
"src": "/EagleProject/images/icon-192x192.png",
9+
"sizes": "192x192",
10+
"type": "image/png"
11+
},
12+
{
13+
"src": "/EagleProject/images/icon-512x512.png",
14+
"sizes": "512x512",
15+
"type": "image/png"
16+
}
17+
]
618
}

0 commit comments

Comments
 (0)