* update: adds multiple favicon options to the app * update: uses the current workbook name in as page title * update: replace favicons in assets
22 lines
1.0 KiB
HTML
22 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico?v=1" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=1" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=1" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=1" />
|
|
<link rel="icon" type="image/png" sizes="192x192" href="/android-chrome-192x192.png?v=1" />
|
|
<link rel="icon" type="image/png" sizes="512x512" href="/android-chrome-512x512.png?v=1" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!-- <meta name="theme-color" content="#1bb566"> -->
|
|
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#F2994A" />
|
|
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="black" />
|
|
<title>IronCalc Spreadsheet</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|