Skip to content

Commit d0b6f1f

Browse files
authored
Merge pull request #1019 from kaermorchen/modern-favicons
Modern favicons
2 parents e13f851 + 15ab307 commit d0b6f1f

File tree

8 files changed

+22
-1
lines changed

8 files changed

+22
-1
lines changed

app/index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@
1616

1717
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/vendor.css">
1818
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/ember-website.css">
19-
<link rel="shortcut icon" href="/images/favicon.png" />
19+
20+
<link rel="apple-touch-icon" href="/favicons/apple-touch-icon.png">
21+
<link rel="icon" href="/favicons/favicon.ico" sizes="any">
22+
<link rel="icon" href="/favicons/icon.svg" type="image/svg+xml">
23+
<link rel="manifest" href="/favicons/manifest.webmanifest">
2024

2125
{{content-for "head-footer"}}
2226
</head>

public/favicons/apple-touch-icon.png

755 Bytes
Loading

public/favicons/favicon.ico

5.3 KB
Binary file not shown.

public/favicons/icon-192.png

961 Bytes
Loading

public/favicons/icon-512.png

2.93 KB
Loading

public/favicons/icon.svg

Lines changed: 10 additions & 0 deletions
Loading

public/favicons/manifest.webmanifest

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "Ember.js",
3+
"icons": [
4+
{ "src": "/favicons/icon-192.png", "type": "image/png", "sizes": "192x192" },
5+
{ "src": "/favicons/icon-512.png", "type": "image/png", "sizes": "512x512" }
6+
]
7+
}

public/images/favicon.png

-1.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)