add apple touch icons
This commit is contained in:
parent
b2f8f356ed
commit
ad36d9274d
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.3 KiB |
|
@ -1,13 +1,15 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta id='theThemeColor' name='theme-color' content='#4169e1'>
|
||||
<meta name="description" content="A mobile-optimized web client for Mastodon.">
|
||||
<meta charset='utf-8' >
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" >
|
||||
<meta id='theThemeColor' name='theme-color' content='#4169e1' >
|
||||
<meta name="description" content="A mobile-optimized web client for Mastodon." >
|
||||
|
||||
<link rel='manifest' href='/manifest.json'>
|
||||
<link id='theFavicon' rel='icon' type='image/png' href='/favicon.png'>
|
||||
<link rel='manifest' href='/manifest.json' >
|
||||
<link id='theFavicon' rel='icon' type='image/png' href='/favicon.png' >
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120.png" >
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180.png" >
|
||||
|
||||
<style>
|
||||
/* auto-generated w/ build-sass.js */
|
||||
|
|
|
@ -5,6 +5,7 @@ const ASSETS = `cache${timestamp}`
|
|||
// `assets` is an array of everything in the `assets` directory
|
||||
const toCache = __shell__.concat(__assets__)
|
||||
.filter(filename => !filename.endsWith('.map'))
|
||||
.filter(filename => !filename.startsWith('apple-icon'))
|
||||
const cached = new Set(toCache)
|
||||
|
||||
// `routes` is an array of `{ pattern: RegExp }` objects that
|
||||
|
|
Loading…
Reference in New Issue