41 lines
1.4 KiB
HTML
41 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
<script src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js"></script>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>
|
|
We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without
|
|
JavaScript enabled. Please enable it to continue.
|
|
</strong>
|
|
</noscript>
|
|
<!-- built files will be auto injected -->
|
|
<script type="text/javascript">
|
|
if (
|
|
window.navigator.userAgent.indexOf('Trident') > -1 ||
|
|
window.navigator.userAgent.indexOf('Edge') > -1
|
|
) {
|
|
//render unsupported message
|
|
document.write(
|
|
'<h1><br/>Sorry, this Excel version is not supported as it still uses IE 11/Legacy Edge.<br/>Please update it or use Excel Online.</h1>'
|
|
)
|
|
} else {
|
|
//render app
|
|
var elem = document.createElement('div')
|
|
elem.setAttribute('id', 'app')
|
|
document.body.appendChild(elem)
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|